/* ===== GEHALTSABRECHNUNG – GOLD/YELLOW PAYSLIP THEME ===== */

    /* HERO: Full dark with payslip floating right */
    .ga-hero {
      background: #0c0a00;
      min-height: 100vh;
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
    }
    .ga-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 50% 60% at 25% 40%, rgba(245,158,11,.12) 0%, transparent 70%),
        radial-gradient(ellipse 35% 40% at 80% 70%, rgba(251,191,36,.08) 0%, transparent 60%);
    }
    .ga-hero-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .ga-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(245,158,11,.12);
      border: 1px solid rgba(245,158,11,.25);
      color: #fbbf24;
      border-radius: 99px;
      padding: .4rem 1rem;
      font-size: .8rem; font-weight: 700; letter-spacing: .04em;
      margin-bottom: 1.5rem;
    }
    .ga-title { font-size: clamp(2.2rem, 3.8vw, 3.2rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 1.25rem; }
    .ga-grad { background: linear-gradient(135deg, #fbbf24, #f59e0b, #f97316); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .ga-sub { font-size: 1.05rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 2rem; }
    .ga-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
    .ga-btn-p {
      background: linear-gradient(135deg, #f59e0b, #f97316);
      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(245,158,11,.3);
    }
    .ga-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;
    }
    .ga-btn-g:hover {
      background: rgba(255,255,255,.12);
      border-color: rgba(255,255,255,.4);
    }

    /* Payslip preview */
    .ga-payslip {
      background: #fff;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(245,158,11,.15);
      max-width: 420px;
      margin-left: auto;
    }
    .ga-ps-header { margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 2px solid #fef3c7; }
    .ga-ps-logo { display: flex; align-items: center; gap: .6rem; margin-bottom: .5rem; }
    .ga-ps-logo-mark { width: 30px; height: 30px; border-radius: 8px; background: linear-gradient(135deg,#f59e0b,#f97316); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: .9rem; }
    .ga-ps-company { font-size: .9rem; font-weight: 800; color: #0f172a; }
    .ga-ps-title { font-size: .7rem; color: #64748b; }
    .ga-ps-month { font-size: .75rem; font-weight: 700; color: #f59e0b; margin-top: .25rem; }
    .ga-ps-employee { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: 1.25rem; }
    .ga-ps-field-label { font-size: .65rem; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }
    .ga-ps-field-val { font-size: .8rem; font-weight: 700; color: #0f172a; margin-top: .1rem; }
    .ga-ps-section { margin-bottom: 1rem; }
    .ga-ps-section-title { font-size: .7rem; font-weight: 800; color: #94a3b8; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; padding-bottom: .35rem; border-bottom: 1px solid #f1f5f9; }
    .ga-ps-row { display: flex; justify-content: space-between; align-items: center; padding: .3rem 0; }
    .ga-ps-row-label { font-size: .78rem; color: #475569; }
    .ga-ps-row-val { font-size: .78rem; font-weight: 700; color: #0f172a; }
    .ga-ps-row-val-plus { color: #22c55e; }
    .ga-ps-row-val-minus { color: #ef4444; }
    .ga-ps-total { background: linear-gradient(135deg, #fef3c7, #fde68a); border-radius: 12px; padding: 1rem; display: flex; justify-content: space-between; align-items: center; margin-top: .75rem; }
    .ga-ps-total-label { font-size: .85rem; font-weight: 700; color: #92400e; }
    .ga-ps-total-val { font-size: 1.4rem; font-weight: 800; color: #92400e; }
    .ga-ps-net { text-align: center; margin-top: .75rem; padding: .75rem; background: #f0fdf4; border-radius: 10px; }
    .ga-ps-net-label { font-size: .7rem; color: #16a34a; font-weight: 700; }
    .ga-ps-net-val { font-size: 1.1rem; font-weight: 800; color: #15803d; display: block; }
    .ga-ps-stamp { position: absolute; top: 50%; right: 1.5rem; transform: translateY(-50%) rotate(15deg); border: 3px solid rgba(34,197,94,.6); border-radius: 8px; padding: .3rem .7rem; color: #22c55e; font-size: .8rem; font-weight: 800; opacity: .7; }

    /* Salary components breakdown */
    .ga-components { padding: 6rem 0; background: #f8fafc; }
    .ga-sec-label { display: block; text-align: center; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #f59e0b; margin-bottom: .75rem; }
    .ga-sec-title { text-align: center; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: #0f172a; margin-bottom: .5rem; }
    .ga-sec-sub { text-align: center; color: #64748b; max-width: 560px; margin: 0 auto 3.5rem; font-size: .95rem; line-height: 1.7; }
    .ga-comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
    .ga-comp-list { display: flex; flex-direction: column; gap: 1rem; }
    .ga-comp-item {
      background: #fff;
      border-radius: 16px;
      padding: 1.5rem;
      border: 1px solid #e2e8f0;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 1rem;
      align-items: center;
    }
    .ga-comp-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(245,158,11,.1); border: 1px solid rgba(245,158,11,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .ga-comp-title { font-size: .9rem; font-weight: 700; color: #0f172a; margin-bottom: .2rem; }
    .ga-comp-sub { font-size: .78rem; color: #64748b; }
    .ga-comp-amount { font-size: 1rem; font-weight: 800; white-space: nowrap; }
    .ga-comp-bar-wrap { background: #f1f5f9; border-radius: 99px; height: 6px; overflow: hidden; margin-top: .5rem; grid-column: 2 / -1; }
    .ga-comp-bar { height: 100%; border-radius: 99px; }

    /* Wage profile types */
    .ga-profiles { padding: 6rem 0; background: #0c0a00; }
    .ga-profiles-title { text-align: center; color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: .5rem; }
    .ga-profiles-sub { text-align: center; color: rgba(255,255,255,.5); max-width: 560px; margin: 0 auto 3.5rem; font-size: .95rem; }
    .ga-profile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .ga-profile-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 20px;
      padding: 2rem;
      position: relative;
      overflow: hidden;
    }
    .ga-profile-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
    }
    .ga-pc-a::before { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
    .ga-pc-b::before { background: linear-gradient(90deg, #22c55e, #14b8a6); }
    .ga-pc-c::before { background: linear-gradient(90deg, #8b5cf6, #6366f1); }
    .ga-profile-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); }
    .ga-profile-card h3 { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: .3rem; }
    .ga-profile-subtitle { font-size: .78rem; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
    .ga-profile-example { background: rgba(255,255,255,.05); border-radius: 12px; padding: 1rem; margin-bottom: 1rem; }
    .ga-profile-example-title { font-size: .72rem; color: rgba(255,255,255,.35); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .5rem; }
    .ga-profile-ex-row { display: flex; justify-content: space-between; font-size: .78rem; color: rgba(255,255,255,.6); padding: .2rem 0; }
    .ga-profile-ex-row-val { font-weight: 700; color: #fbbf24; }
    .ga-profile-features { display: flex; flex-direction: column; gap: .4rem; }
    .ga-profile-feature { font-size: .8rem; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: .4rem; }
    .ga-profile-feature::before { content: '·'; color: #f59e0b; font-size: 1.3rem; line-height: 1; flex-shrink: 0; }

    /* Bonus calculator visual */
    .ga-bonuses { padding: 6rem 0; background: #fff; }
    .ga-bonuses-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .ga-bonuses-left h2 { font-size: clamp(1.7rem, 2.5vw, 2.2rem); font-weight: 800; color: #0f172a; margin-bottom: 1rem; }
    .ga-bonuses-left p { font-size: .95rem; color: #64748b; line-height: 1.7; margin-bottom: 1.5rem; }
    .ga-bonus-types { display: flex; flex-direction: column; gap: .75rem; }
    .ga-bonus-item { display: flex; align-items: center; gap: 1rem; }
    .ga-bonus-pct {
      width: 64px; height: 64px; border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; font-weight: 800; color: #fff;
      flex-shrink: 0;
    }
    .ga-bonus-item-text h4 { font-size: .95rem; font-weight: 700; color: #0f172a; margin-bottom: .15rem; }
    .ga-bonus-item-text p { font-size: .8rem; color: #64748b; line-height: 1.4; }
    .ga-bonus-legal { font-size: .75rem; color: #94a3b8; font-style: italic; }
    .ga-bonuses-right {
      background: #0f172a;
      border-radius: 24px;
      padding: 2rem;
      border: 1px solid rgba(245,158,11,.2);
    }
    .ga-calc-title { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }
    .ga-calc-scenario { background: rgba(255,255,255,.04); border-radius: 14px; padding: 1.25rem; margin-bottom: 1rem; }
    .ga-calc-scenario-head { font-size: .8rem; font-weight: 700; color: #fbbf24; margin-bottom: .75rem; }
    .ga-calc-row { display: flex; justify-content: space-between; font-size: .78rem; padding: .2rem 0; }
    .ga-calc-row-label { color: rgba(255,255,255,.55); }
    .ga-calc-row-val { color: #fff; font-weight: 700; }
    .ga-calc-total { border-top: 1px solid rgba(255,255,255,.1); margin-top: .5rem; padding-top: .5rem; display: flex; justify-content: space-between; font-size: .85rem; font-weight: 800; }
    .ga-calc-total-label { color: rgba(255,255,255,.7); }
    .ga-calc-total-val { color: #fbbf24; }

    /* Steps */
    .ga-steps { padding: 6rem 0; background: #f8fafc; }
    .ga-steps-title { text-align: center; color: #0f172a; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; margin-bottom: .5rem; }
    .ga-steps-sub { text-align: center; color: #64748b; max-width: 560px; margin: 0 auto 3.5rem; font-size: .95rem; }
    .ga-steps-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }
    .ga-steps-row::before {
      content: '';
      position: absolute;
      top: 28px; left: 12.5%; right: 12.5%;
      height: 2px;
      background: linear-gradient(90deg, #f59e0b, #f97316);
    }
    .ga-step { text-align: center; padding: 0 1rem; }
    .ga-step-dot {
      width: 56px; height: 56px; border-radius: 50%;
      background: linear-gradient(135deg, #f59e0b, #f97316);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.25rem;
      position: relative; z-index: 1;
      box-shadow: 0 0 0 6px #f8fafc, 0 0 0 8px rgba(245,158,11,.2);
    }
    .ga-step h3 { font-size: .9rem; font-weight: 700; color: #0f172a; margin-bottom: .35rem; }
    .ga-step p { font-size: .78rem; color: #64748b; line-height: 1.5; }

    /* CTA */
    .ga-cta { padding: 3rem 0; }
    .ga-cta-inner { text-align: center; }
    .ga-cta-inner h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: #0f172a; margin-bottom: .5rem; }
    .ga-cta-inner p { color: #64748b; margin-bottom: 1.25rem; }
    .ga-cta-btns { display: flex; gap: 1rem; justify-content: center; }
    .ga-cta-w { background: linear-gradient(135deg, #f59e0b, #f97316); color: #fff; border-radius: 10px; padding: .85rem 2rem; font-weight: 700; text-decoration: none; box-shadow: 0 4px 16px rgba(245,158,11,.3); }
    .ga-cta-o { background: transparent; color: #475569; border: 1.5px solid #e2e8f0; border-radius: 10px; padding: .85rem 2rem; font-weight: 600; text-decoration: none; }

    @media (max-width:900px) {
      .ga-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
      .ga-payslip { max-width: 360px; margin: 0 auto; }
      .ga-comp-grid { grid-template-columns: 1fr; }
      .ga-profile-grid { grid-template-columns: 1fr; }
      .ga-bonuses-inner { grid-template-columns: 1fr; }
      .ga-steps-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .ga-steps-row::before { display: none; }
    }
    @media (max-width: 768px) { footer .container > div:first-child { grid-template-columns: 1fr !important; } }
