/* ===== BUDGETS & AUSGABEN – PINK THEME ===== */

    .ba-hero {
      background: #0a0312;
      min-height: 100vh;
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .ba-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 50% 60% at 25% 40%, rgba(236,72,153,.1) 0%, transparent 70%),
        radial-gradient(ellipse 35% 40% at 80% 65%, rgba(219,39,119,.07) 0%, transparent 60%);
    }
    .ba-hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .ba-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(236,72,153,.12);
      border: 1px solid rgba(236,72,153,.25);
      color: #f472b6;
      border-radius: 99px;
      padding: .4rem 1rem;
      font-size: .8rem; font-weight: 700; letter-spacing: .04em;
      margin-bottom: 1.5rem;
    }
    .ba-title { font-size: clamp(2.2rem, 3.8vw, 3.2rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 1.25rem; }
    .ba-grad { background: linear-gradient(135deg, #f9a8d4, #ec4899, #db2777); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .ba-sub { font-size: 1.05rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 2rem; }
    .ba-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
    .ba-btn-p {
      background: linear-gradient(135deg, #ec4899, #db2777);
      color: #fff; border: none; border-radius: 10px;
      padding: .85rem 2rem; font-size: .95rem; font-weight: 700;
      text-decoration: none; display: inline-block;
      box-shadow: 0 0 30px rgba(236,72,153,.3);
      transition: transform .2s, box-shadow .2s;
    }
    .ba-btn-p:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(236,72,153,.45); }
    .ba-btn-g {
      background: rgba(255,255,255,.07);
      color: rgba(255,255,255,.85);
      border: 1px solid rgba(255,255,255,.25);
      border-radius: 10px; padding: .85rem 2rem;
      font-size: .95rem; font-weight: 600;
      text-decoration: none; display: inline-block;
      transition: background .2s, border-color .2s;
    }
    .ba-btn-g:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); }

    /* BUDGET DASHBOARD MOCKUP */
    .ba-dashboard {
      background: #1e293b;
      border-radius: 20px;
      padding: 0;
      box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(236,72,153,.12);
      max-width: 460px;
      margin-left: auto;
      overflow: hidden;
    }
    .ba-dash-head {
      background: linear-gradient(135deg, #831843, #9d174d);
      padding: .75rem 1.25rem;
      display: flex; align-items: center; gap: .75rem;
    }
    .ba-dash-body { padding: 1.25rem; }
    .ba-dash-stats { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 1rem; }
    .ba-dash-stat {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 12px;
      padding: .75rem;
    }
    .ba-dash-stat-label { font-size: .6rem; color: rgba(255,255,255,.4); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: .25rem; }
    .ba-dash-stat-val { font-size: 1.1rem; font-weight: 800; color: #fff; }
    .ba-dash-stat-sub { font-size: .6rem; color: rgba(255,255,255,.35); margin-top: .15rem; }
    .ba-bar-track { background: rgba(255,255,255,.08); border-radius: 99px; height: 6px; margin-top: .5rem; overflow: hidden; }
    .ba-bar-fill { height: 100%; border-radius: 99px; }
    .ba-dash-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: .6rem 0;
      border-bottom: 1px solid rgba(255,255,255,.05);
    }
    .ba-dash-row:last-child { border-bottom: none; }
    .ba-dash-row-info { display: flex; align-items: center; gap: .6rem; }
    .ba-dash-row-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
    .ba-dash-row-name { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.8); }
    .ba-dash-row-cat { font-size: .6rem; color: rgba(255,255,255,.35); }
    .ba-dash-row-amount { font-size: .78rem; font-weight: 700; color: #fff; }
    .ba-dash-row-status { font-size: .6rem; font-weight: 700; padding: .15rem .5rem; border-radius: 99px; }

    /* DUAL SECTION */
    .ba-dual { padding: 6rem 0; background: #0f172a; }
    .ba-dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
    .ba-dual-card {
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 24px;
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
    }
    .ba-dual-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
    }
    .ba-dc-budget::before { background: linear-gradient(90deg, #ec4899, #f9a8d4); }
    .ba-dc-expense::before { background: linear-gradient(90deg, #db2777, #f472b6); }
    .ba-dual-icon {
      width: 56px; height: 56px; border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.25rem;
    }
    .ba-dual-card h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: .5rem; }
    .ba-dual-card > p { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 1.5rem; }
    .ba-dual-features { display: flex; flex-direction: column; gap: .6rem; }
    .ba-dual-feat {
      display: flex; align-items: center; gap: .75rem;
      background: rgba(255,255,255,.04);
      border-radius: 10px;
      padding: .65rem .875rem;
    }
    .ba-dual-feat-icon {
      width: 32px; height: 32px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .ba-dual-feat span { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.7); }

    /* FEATURE CARDS */
    .ba-features { padding: 6rem 0; background: #fff; }
    .ba-feat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
    .ba-feat-card {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 2rem;
      transition: all .22s;
      display: flex; gap: 1.25rem;
    }
    .ba-feat-card:hover {
      background: #fff;
      box-shadow: 0 8px 30px rgba(0,0,0,.06);
      border-color: rgba(236,72,153,.25);
      transform: translateY(-2px);
    }
    .ba-feat-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: rgba(236,72,153,.1);
      border: 1px solid rgba(236,72,153,.2);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .ba-feat-body h3 { font-size: .95rem; font-weight: 700; color: #0f172a; margin-bottom: .4rem; }
    .ba-feat-body p { font-size: .875rem; color: #64748b; line-height: 1.65; }

    /* WORKFLOW */
    .ba-workflow { padding: 6rem 0; background: linear-gradient(135deg, #0a0312, #1a0526); }
    .ba-wf-title { text-align: center; color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: .5rem; }
    .ba-wf-sub { text-align: center; color: rgba(255,255,255,.5); max-width: 560px; margin: 0 auto 3.5rem; font-size: .95rem; }
    .ba-wf-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    .ba-wf-row::before {
      content: '';
      position: absolute;
      top: 28px; left: 12.5%; right: 12.5%;
      height: 2px;
      background: linear-gradient(90deg, #ec4899, #db2777, #f472b6, #f9a8d4);
    }
    .ba-wf-step { text-align: center; padding: 0 1rem; }
    .ba-wf-dot {
      width: 56px; height: 56px; border-radius: 50%;
      background: linear-gradient(135deg, #ec4899, #db2777);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem;
      position: relative; z-index: 1;
      box-shadow: 0 0 0 6px #0a0312, 0 0 0 8px rgba(236,72,153,.25);
    }
    .ba-wf-step h3 { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: .35rem; }
    .ba-wf-step p { font-size: .78rem; color: rgba(255,255,255,.45); line-height: 1.5; }

    /* MOCKUP SECTION */
    .ba-mockup { padding: 5rem 0; background: #020817; }

    /* CTA */
    .ba-cta-section { padding: 6rem 0; text-align: center; background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%); }
    .ba-cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -.03em; margin-bottom: 1rem; }
    .ba-cta-section p { color: rgba(255,255,255,.5); font-size: 1.0625rem; margin-bottom: 2.5rem; }
    .ba-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
    .ba-cta-btn-p {
      padding: .9rem 2rem;
      background: linear-gradient(135deg, #ec4899, #db2777);
      color: #fff; border-radius: 999px; font-weight: 700; font-size: 1rem;
      box-shadow: 0 4px 20px rgba(236,72,153,.35);
      transition: all .2s; text-decoration: none;
    }
    .ba-cta-btn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(236,72,153,.45); }

    @media (max-width: 900px) {
      .ba-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
      .ba-dashboard { max-width: 380px; margin: 0 auto; }
      .ba-dual-grid { grid-template-columns: 1fr; }
      .ba-feat-grid { grid-template-columns: 1fr; }
      .ba-wf-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .ba-wf-row::before { display: none; }
    }
    @media (max-width: 768px) { footer .container > div:first-child { grid-template-columns: 1fr !important; } }
