.mutschwestern-rechner,
.mutschwestern-rechner * {
  box-sizing: border-box;
}

.mutschwestern-rechner {
  --black:  #0A0A0A;
  --yellow: #FFE600;
  --white:  #FFFFFF;
  --grey:   #1A1A1A;
  --mid:    #333333;
  --soft:   rgba(255,255,255,0.45);
  --line:   rgba(255,255,255,0.1);
  background: var(--black);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  min-height: 100vh;
  padding: 0 0 80px;
}

.mutschwestern-rechner .calc-header {
  background: var(--black);
  padding: 48px 48px 40px;
  border-bottom: 2px solid var(--yellow);
  margin-bottom: 48px;
}

.mutschwestern-rechner .calc-kicker {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mutschwestern-rechner .calc-kicker::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--yellow);
  display: block;
}

.mutschwestern-rechner .calc-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}

.mutschwestern-rechner .calc-title em {
  color: var(--yellow);
  font-style: italic;
}

.mutschwestern-rechner .calc-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: var(--soft);
  margin: 16px 0 0;
  line-height: 1.65;
  max-width: 560px;
}

.mutschwestern-rechner .calc-body {
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  max-width: 1100px;
  margin: 0 auto;
}

.mutschwestern-rechner .panel {
  background: var(--grey);
  padding: 32px 28px;
  border: 1px solid var(--line);
}

.mutschwestern-rechner .panel-title,
.mutschwestern-rechner .chart-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.mutschwestern-rechner .field { margin-bottom: 28px; }
.mutschwestern-rechner .field:last-child { margin-bottom: 0; }

.mutschwestern-rechner .field-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  gap: 16px;
}

.mutschwestern-rechner .field-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
}

.mutschwestern-rechner .field-val {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--yellow);
  line-height: 1;
  white-space: nowrap;
}

.mutschwestern-rechner .muted-small {
  color: rgba(255,255,255,0.4);
  font-size: 16px;
}

.mutschwestern-rechner input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.15);
  outline: none;
  cursor: pointer;
  margin-top: 4px;
  border: none;
  padding: 0;
}

.mutschwestern-rechner input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  background: var(--yellow);
  cursor: pointer;
  border-radius: 0;
  border: none;
}

.mutschwestern-rechner input[type=range]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--yellow);
  cursor: pointer;
  border-radius: 0;
  border: none;
}

.mutschwestern-rechner .range-bounds {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  margin-top: 5px;
  letter-spacing: 0.06em;
}

.mutschwestern-rechner .results {
  grid-column: 1 / -1;
  background: var(--yellow);
  padding: 36px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.mutschwestern-rechner .res-card {
  background: var(--black);
  padding: 24px 20px;
}

.mutschwestern-rechner .res-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft);
  margin-bottom: 10px;
  line-height: 1.4;
}

.mutschwestern-rechner .res-num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: var(--yellow);
}

.mutschwestern-rechner .res-num.green { color: #00E5A0; }
.mutschwestern-rechner .res-unit {
  font-size: 11px;
  color: var(--soft);
  margin-top: 4px;
}

.mutschwestern-rechner .chart-section {
  grid-column: 1 / -1;
  background: var(--grey);
  border: 1px solid var(--line);
  padding: 32px 28px;
}

.mutschwestern-rechner .bar-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mutschwestern-rechner .bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  gap: 16px;
}

.mutschwestern-rechner .bar-desc {
  font-size: 12px;
  font-weight: 600;
  color: var(--soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mutschwestern-rechner .bar-val-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  white-space: nowrap;
}

.mutschwestern-rechner .bar-track {
  height: 12px;
  background: rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}

.mutschwestern-rechner .bar-fill {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  transition: width 0.5s ease;
}

.mutschwestern-rechner .fill-yellow { background: var(--yellow); }
.mutschwestern-rechner .fill-white  { background: rgba(255,255,255,0.3); }
.mutschwestern-rechner .fill-green  { background: #00E5A0; }

.mutschwestern-rechner .bar-src {
  font-size: 10px;
  color: rgba(255,255,255,0.18);
  margin-top: 5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mutschwestern-rechner .message-section {
  grid-column: 1 / -1;
  padding: 28px 32px;
  border-left: 4px solid var(--yellow);
  background: var(--grey);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mutschwestern-rechner .message-section.good { border-left-color: #00E5A0; }

.mutschwestern-rechner .msg-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 8px;
}

.mutschwestern-rechner .msg-title.good-t { color: #00E5A0; }

.mutschwestern-rechner .msg-text {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.7;
  margin: 0;
}

.mutschwestern-rechner .msg-text strong { color: var(--white); font-weight: 600; }

.mutschwestern-rechner .cta-section {
  grid-column: 1 / -1;
  background: var(--yellow);
  padding: 36px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.mutschwestern-rechner .cta-text h3 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 0 0 4px;
}

.mutschwestern-rechner .cta-text p {
  font-size: 13px;
  color: rgba(0,0,0,0.6);
  margin: 0;
}

.mutschwestern-rechner .cta-btn {
  background: var(--black);
  color: var(--yellow);
  border: none;
  padding: 16px 36px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
  text-decoration: none;
  display: inline-block;
}

.mutschwestern-rechner .cta-btn:hover { opacity: 0.85; color: var(--yellow); }

.mutschwestern-rechner .disclaimer {
  grid-column: 1 / -1;
  font-size: 10px;
  color: rgba(255,255,255,0.18);
  line-height: 1.7;
  padding: 20px 0 0;
  letter-spacing: 0.03em;
  border-top: 1px solid var(--line);
}

.mutschwestern-rechner .hinweis {
  background: var(--black);
  border: 1px solid rgba(255,230,0,0.2);
  padding: 20px;
  margin-top: 0;
}

.mutschwestern-rechner .hinweis-title {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 8px;
}

.mutschwestern-rechner .hinweis-text {
  font-size: 12px;
  color: var(--soft);
  line-height: 1.65;
}

@media (max-width: 720px) {
  .mutschwestern-rechner .calc-header { padding: 36px 20px 28px; }
  .mutschwestern-rechner .calc-body { padding: 0 20px; grid-template-columns: 1fr; }
  .mutschwestern-rechner .results { grid-template-columns: 1fr 1fr; }
  .mutschwestern-rechner .cta-section { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .mutschwestern-rechner .results { grid-template-columns: 1fr; }
  .mutschwestern-rechner .field-head,
  .mutschwestern-rechner .bar-meta { align-items: flex-start; flex-direction: column; gap: 6px; }
}
