/* Page CSS: gehalt */

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Roboto', sans-serif; color: #484848; background: #fff; line-height: 1.6; }
    :root {
      --navy:  #1c244b;
      --blue:  #3a3eff;
      --sky:   #0396e0;
      --gray:  #484848;
      --light: #f0f4f8;
      --white: #ffffff;
    }
    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

    /* NAV */
    nav { background: var(--white); border-bottom: 3px solid var(--blue); box-shadow: 0 2px 12px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 100; }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
    .nav-logo { color: var(--navy); font-size: 14px; font-weight: 700; text-decoration: none; line-height: 1.3; }
    .nav-logo span { color: var(--sky); font-size: 11px; font-weight: 400; display: block; }
    .nav-links { display: flex; gap: 24px; list-style: none; }
    .nav-links a { color: var(--navy); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: var(--sky); }
    .btn { display: inline-block; background: var(--blue); color: #fff; font-weight: 700; font-size: 14px; padding: 12px 28px; border-radius: 6px; text-decoration: none; transition: background .2s; }
    .btn:hover { background: #2b2ecc; }
    .btn-sky { background: var(--sky); }
    .btn-sky:hover { background: #0278b8; }
    .btn-outline { background: transparent; border: 2px solid var(--sky); color: var(--sky); }
    .btn-outline:hover { background: var(--sky); color: #fff; }

    /* HERO */
    .hero { background: linear-gradient(135deg, var(--navy) 0%, #0d1635 100%); padding: 80px 0; overflow: hidden; position: relative; }
    .hero-inner { display: grid; grid-template-columns: 1fr 460px; gap: 60px; align-items: center; }
    .hero-badge { display: inline-block; background: rgba(3,150,224,.2); border: 1px solid rgba(3,150,224,.4); color: var(--sky); font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
    .hero h1 { font-size: 44px; font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 16px; }
    .hero h1 em { color: var(--sky); font-style: normal; }
    .hero p { font-size: 17px; color: rgba(255,255,255,.78); margin-bottom: 28px; }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
    .hero-badge-sm { background: rgba(255,255,255,.07); border: 1px solid rgba(3,150,224,.3); color: rgba(255,255,255,.8); font-size: 12px; padding: 5px 12px; border-radius: 16px; }

    /* Comparison Card */
    .compare-card { background: #fff; border-radius: 20px; padding: 28px; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
    .compare-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 20px; text-align: center; }
    .compare-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
    .compare-box { border-radius: 12px; padding: 16px; text-align: center; }
    .compare-box.bad { background: #fff1f1; border: 1px solid #fca5a5; }
    .compare-box.good { background: #f0fdf4; border: 1px solid #86efac; }
    .compare-box .label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
    .compare-box.bad .label { color: #dc2626; }
    .compare-box.good .label { color: #16a34a; }
    .compare-box .amount { font-size: 32px; font-weight: 900; line-height: 1; }
    .compare-box.bad .amount { color: #dc2626; }
    .compare-box.good .amount { color: #16a34a; }
    .compare-box .sub { font-size: 11px; color: #888; margin-top: 4px; }
    .compare-divider { text-align: center; font-size: 12px; color: var(--gray); margin-bottom: 16px; padding: 10px 0; border-top: 1px dashed #e0e0e0; border-bottom: 1px dashed #e0e0e0; }
    .compare-cta { display: block; text-align: center; background: var(--sky); color: #fff; font-weight: 700; padding: 14px; border-radius: 10px; text-decoration: none; font-size: 14px; margin-top: 16px; transition: background .2s; }
    .compare-cta:hover { background: #0278b8; }

    /* STRIP */
    .strip { background: var(--light); padding: 18px 0; border-bottom: 1px solid #d8e4f0; }
    .strip-inner { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
    .strip-item { font-size: 13px; color: var(--gray); font-weight: 500; display: flex; align-items: center; gap: 6px; }
    .strip-item::before { content: '✓'; color: var(--sky); font-weight: 900; }

    /* SECTIONS */
    section { padding: 72px 0; }
    .tag { display: inline-block; background: rgba(3,150,224,.1); color: var(--navy); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 12px; }
    h2 { font-size: 32px; font-weight: 900; color: var(--navy); line-height: 1.2; margin-bottom: 14px; }
    h2 em { color: var(--sky); font-style: normal; }
    p { color: var(--gray); font-size: 15px; margin-bottom: 14px; line-height: 1.7; }
    .section-header { text-align: center; margin-bottom: 48px; }
    .section-header p { max-width: 580px; margin: 0 auto; }

    /* RECHNER SECTION */
    .rechner { background: var(--light); }
    .rechner-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 48px; }

    /* ── Original Schnellrechner Styles (adapted color scheme) ── */
    .sr-table { width: 100%; border-collapse: collapse; background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,.1); margin-bottom: 24px; border-radius: 12px; overflow: hidden; }
    .sr-table th, .sr-table td { padding: 12px 15px; text-align: right; border-bottom: 1px solid #ddd; font-size: 14px; }
    .sr-table th { background: var(--navy); color: white; font-weight: 700; }
    .sr-table th:first-child, .sr-table td.category { text-align: left; }
    .sr-table td.category { font-weight: 700; color: var(--navy); font-size: 13px; }
    .sr-table tr:hover { background: #f0f4f8; }
    .sr-table .highlight-row { background: #e8f0ff; }
    .sr-table .result-value { font-weight: 700; color: var(--sky); }

    .sr-slider-box { background: var(--white); padding: 20px 24px; box-shadow: 0 2px 10px rgba(0,0,0,.1); margin-bottom: 20px; border-radius: 12px; }
    .sr-slider-label { display: flex; justify-content: space-between; margin-bottom: 10px; font-weight: 700; color: var(--navy); font-size: 14px; }
    .sr-slider-value { background: var(--sky); color: white; padding: 4px 14px; border-radius: 20px; font-weight: 700; font-size: 14px; }
    .sr-pct-display { text-align: center; font-size: 22px; font-weight: 700; color: var(--sky); margin: 12px 0; }
    input[type="range"].sr-range { width: 100%; height: 10px; background: linear-gradient(to right, var(--blue), #ffbb33, var(--sky)); outline: none; border-radius: 5px; -webkit-appearance: none; cursor: pointer; }
    input[type="range"].sr-range::-webkit-slider-thumb { -webkit-appearance: none; width: 24px; height: 24px; background: var(--navy); border-radius: 50%; cursor: pointer; border: 3px solid white; box-shadow: 0 2px 5px rgba(0,0,0,.3); }

    .sr-info-box { background: #e3f2fd; padding: 14px; border-radius: 8px; margin-bottom: 20px; font-size: 13px; color: #1c244b; line-height: 1.5; }
    .sr-calc-box { background: #fffde7; padding: 14px; border-radius: 8px; margin-top: 16px; font-size: 13px; color: #555; }

    /* Chart */
    .sr-chart-container { background: var(--white); padding: 24px; box-shadow: 0 2px 15px rgba(0,0,0,.1); border-radius: 12px; margin-top: 32px; }
    .sr-chart-title { text-align: center; font-size: 18px; font-weight: 700; margin-bottom: 28px; color: var(--navy); }
    .sr-chart-wrapper { height: 420px; position: relative; margin-bottom: 50px; }
    .sr-chart-bars { display: flex; align-items: flex-end; justify-content: space-around; height: 300px; position: absolute; bottom: 60px; left: 60px; right: 20px; }
    .sr-bar-column { display: flex; flex-direction: column; align-items: center; flex: 1; position: relative; }
    .sr-bar-2d { width: 120px; max-width: 90%; border-radius: 8px 8px 0 0; position: absolute; display: flex; align-items: center; justify-content: center; transition: height .4s ease; }
    .sr-bar-value { position: absolute; width: 100%; text-align: center; font-weight: 700; font-size: 11px; color: white; text-shadow: 1px 1px 2px rgba(0,0,0,.6); pointer-events: none; z-index: 2; }
    .sr-scenario-label { position: absolute; bottom: -55px; width: 100%; text-align: center; font-weight: 700; font-size: 12px; color: var(--navy); background: #f0f4f8; padding: 6px 4px; border-radius: 5px; border-left: 4px solid; line-height: 1.3; }
    .sr-total-value { position: absolute; top: -32px; width: 100%; text-align: center; font-weight: 700; font-size: 12px; color: var(--navy); background: #fffde7; padding: 4px; border-radius: 4px; border: 1px solid #ffcc80; }
    .sr-axis-y { position: absolute; left: 50px; top: 0; bottom: 60px; width: 1px; background: #333; }
    .sr-axis-x { position: absolute; left: 50px; right: 10px; bottom: 60px; height: 1px; background: #333; }
    .sr-axis-label { position: absolute; font-size: 11px; color: #666; left: 4px; text-align: right; width: 40px; }
    .sr-grid-line { position: absolute; left: 50px; right: 10px; height: 1px; border-top: 1px dashed #ddd; }
    .sr-legend { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 16px; }
    .sr-legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray); }
    .sr-legend-color { width: 16px; height: 16px; border-radius: 4px; flex-shrink: 0; }

    /* Gesamt-Ersparnis */
    .sr-total-box { background: var(--white); padding: 24px; box-shadow: 0 2px 15px rgba(0,0,0,.1); border-radius: 12px; margin-top: 32px; }
    .sr-employee-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding: 14px; background: #e8f0ff; border-radius: 8px; flex-wrap: wrap; gap: 12px; }
    .sr-employee-label { font-weight: 700; font-size: 15px; color: var(--navy); }
    .sr-employee-input { width: 80px; padding: 8px 12px; font-size: 16px; border: 2px solid var(--sky); border-radius: 6px; text-align: center; font-weight: 700; font-family: 'Roboto', sans-serif; color: var(--navy); }
    .sr-savings-table { width: 100%; border-collapse: collapse; border-radius: 10px; overflow: hidden; }
    .sr-savings-table th { background: var(--blue); color: white; text-align: center; padding: 14px; font-size: 14px; }
    .sr-savings-table td { text-align: center; padding: 18px 14px; font-size: 18px; font-weight: 700; border-bottom: 1px solid #eee; }
    .sr-savings-value { color: var(--sky); font-size: 22px; }
    .sr-period-row { display: flex; justify-content: center; gap: 16px; margin-top: 14px; }
    .sr-period-btn { padding: 7px 18px; background: #e0e0e0; border: none; border-radius: 5px; cursor: pointer; font-weight: 700; font-size: 13px; font-family: 'Roboto', sans-serif; transition: background .2s; }
    .sr-period-btn.active { background: var(--sky); color: white; }
    .sr-period-btn:hover:not(.active) { background: #ccc; }

    /* CTA Beratung */
    .sr-cta-box { background: var(--white); padding: 28px; box-shadow: 0 2px 15px rgba(0,0,0,.1); border-radius: 12px; margin-top: 32px; border-top: 4px solid var(--sky); }
    .sr-cta-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
    .sr-cta-title { font-size: 22px; font-weight: 700; color: var(--navy); }
    .sr-cta-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-bottom: 24px; }
    .sr-feature { background: #f0f4f8; padding: 16px; border-radius: 8px; border-left: 4px solid var(--blue); }
    .sr-feature-title { font-weight: 700; color: var(--navy); margin-bottom: 6px; font-size: 14px; }
    .sr-feature-desc { color: var(--gray); font-size: 13px; line-height: 1.5; }
    .sr-benefits-box { background: #e8f0ff; padding: 20px; border-radius: 8px; margin-bottom: 20px; }
    .sr-benefits-title { font-weight: 700; color: var(--navy); margin-bottom: 12px; font-size: 16px; }
    .sr-benefits-list { list-style: none; padding: 0; }
    .sr-benefits-list li { padding: 7px 0 7px 28px; position: relative; font-size: 14px; color: var(--gray); }
    .sr-benefits-list li::before { content: "✓"; position: absolute; left: 0; color: var(--sky); font-weight: 900; }
    .sr-savings-summary { background: #f0f4f8; padding: 16px; border-radius: 8px; display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px; }
    .sr-savings-item { text-align: center; }
    .sr-savings-item .lbl { font-size: 12px; color: var(--gray); margin-bottom: 4px; }
    .sr-savings-item .val { font-size: 20px; font-weight: 900; color: var(--sky); }
    .sr-action-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .sr-btn-print { background: var(--blue); color: white; border: none; padding: 13px 30px; font-size: 16px; font-weight: 700; border-radius: 8px; cursor: pointer; font-family: 'Roboto', sans-serif; transition: all .2s; }
    .sr-btn-print:hover { background: #2b2ecc; transform: translateY(-2px); }
    .sr-btn-contact { background: var(--sky); color: white; border: none; padding: 13px 30px; font-size: 16px; font-weight: 700; border-radius: 8px; cursor: pointer; font-family: 'Roboto', sans-serif; transition: all .2s; }
    .sr-btn-contact:hover { background: #0278b8; transform: translateY(-2px); }
    .sr-print-note { text-align: center; margin-top: 12px; font-size: 13px; color: #888; font-style: italic; }

    @media (max-width: 900px) {
      .sr-bar-2d { width: 80px; }
      .sr-cta-header { flex-direction: column; }
    }

    /* BENEFITS GRID */
    .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
    .benefit-card { background: var(--white); border: 1px solid #dce8f4; border-radius: 14px; padding: 24px; transition: transform .2s, box-shadow .2s; }
    .benefit-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(28,36,75,.1); }
    .benefit-card .icon { font-size: 28px; margin-bottom: 12px; }
    .benefit-card h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .benefit-card p { font-size: 13px; color: var(--gray); margin: 0 0 10px; }
    .benefit-card .savings { font-size: 13px; font-weight: 700; color: var(--sky); }

    /* COMPARISON TABLE */
    .compare-section { background: var(--light); }
    .compare-table { width: 100%; border-collapse: collapse; margin-top: 32px; background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 4px 20px rgba(28,36,75,.08); }
    .compare-table th { background: var(--navy); color: #fff; padding: 16px 20px; text-align: left; font-size: 14px; font-weight: 700; }
    .compare-table th:nth-child(2) { background: #dc2626; text-align: center; }
    .compare-table th:nth-child(3) { background: var(--sky); text-align: center; }
    .compare-table td { padding: 14px 20px; border-bottom: 1px solid #eef4f8; font-size: 14px; }
    .compare-table td:nth-child(2) { text-align: center; color: #dc2626; font-weight: 600; }
    .compare-table td:nth-child(3) { text-align: center; color: #16a34a; font-weight: 600; }
    .compare-table tr:last-child td { border: none; font-weight: 700; font-size: 15px; }
    .compare-table tr:last-child td:nth-child(2) { color: #dc2626; background: #fff8f8; }
    .compare-table tr:last-child td:nth-child(3) { color: #16a34a; background: #f0fdf4; }

    /* PROCESS */
    .process { padding: 72px 0; }
    .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; position: relative; }
    .steps-grid::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(90deg, var(--sky), var(--blue)); }
    .step { text-align: center; padding: 0 12px; }
    .step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: #fff; font-size: 20px; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; border: 3px solid var(--sky); position: relative; z-index: 1; }
    .step h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
    .step p { font-size: 13px; color: var(--gray); }

    /* CTA */
    .cta { background: linear-gradient(135deg, var(--navy) 0%, #0d1635 100%); padding: 80px 0; text-align: center; }
    .cta h2 { color: #fff; font-size: 36px; margin-bottom: 14px; }
    .cta p { color: rgba(255,255,255,.75); font-size: 16px; max-width: 520px; margin: 0 auto 32px; }
    .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* FOOTER */
    footer { background: #090d24; color: rgba(255,255,255,.6); padding: 48px 0 24px; }
    .footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 32px; margin-bottom: 32px; }
    .footer-brand h3 { color: #fff; font-size: 15px; margin-bottom: 4px; }
    .footer-brand .sky { color: var(--sky); font-size: 12px; margin-bottom: 12px; }
    .footer-brand p { font-size: 13px; }
    .footer-links h4 { color: #fff; font-size: 13px; margin-bottom: 12px; }
    .footer-links ul { list-style: none; }
    .footer-links ul li { margin-bottom: 6px; }
    .footer-links ul a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 13px; }
    .footer-links ul a:hover { color: var(--sky); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
    .legal { font-size: 11px; color: rgba(255,255,255,.3); }
    .legal strong { color: rgba(255,255,255,.45); }

    @media (max-width: 900px) {
      .hero-inner, .sr-intro-grid, .steps-grid { grid-template-columns: 1fr; }
      .steps-grid::before { display: none; }
      .benefits-grid { grid-template-columns: 1fr 1fr; }
      .hero h1 { font-size: 30px; }
    }
    @media (max-width: 600px) {
      .benefits-grid { grid-template-columns: 1fr; }
      .compare-row { grid-template-columns: 1fr; }
    }
  
body{font-family:Arial,sans-serif;padding:30px;color:#333;max-width:800px;margin:0 auto}
    .header{text-align:center;margin-bottom:40px;border-bottom:3px solid #0396e0;padding-bottom:20px}
    h1{font-size:26px;font-weight:bold;margin:0 0 10px}
    .price{font-size:30px;font-weight:bold;color:#0396e0;margin:16px 0}
    h2{font-size:18px;font-weight:bold;color:#1c244b;margin:24px 0 10px;padding-bottom:8px;border-bottom:2px solid #f0f0f0}
    .box{background:#f0f7ff;padding:18px;border-radius:8px;margin:16px 0;border-left:4px solid #0396e0}
    .row{display:flex;justify-content:space-between;margin:8px 0;padding:6px 0;border-bottom:1px solid #eee}
    .hl{color:#0396e0;font-weight:bold}
    ul{padding-left:20px}li{margin:8px 0}
    footer{margin-top:40px;padding-top:16px;border-top:2px solid #f0f0f0;font-size:11px;color:#888;text-align:center}
    