/* ============================================
   Budget-Check
   ============================================ */

/* Tab Switcher */
.konfig-tab-switcher {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 20px; }
.konfig-tab {
  padding: 12px 30px;
  border: 2px solid #0B2F36;
  background: #fff;
  color: #0B2F36;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s; }
.konfig-tab:first-child {
  border-radius: 8px 0 0 8px; }
.konfig-tab:last-child {
  border-radius: 0 8px 8px 0;
  border-left: none; }
.konfig-tab.active {
  background: #0B2F36;
  color: #fff; }
.konfig-tab:hover:not(.active) {
  background: #f0f0f0; }

.konfigurator,
.budgetcheck {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  font-family: inherit;
}

/* Intro */
.budgetcheck-intro {
  text-align: center;
  margin-bottom: 32px;
}
.budgetcheck-intro h3 {
  font-weight: 700;
  color: #0B2F36;
  margin: 0 0 12px;
}
.budgetcheck-intro p {
  line-height: 1.6;
  color: #4a4a4a;
  max-width: 720px;
  margin: 0 auto;
}

/* Step Indicator */
.konfig-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  padding: 0 10px;
}

.konfig-step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.konfig-step-dot.active {
  background: #0B2F36;
  color: #fff;
  transform: scale(1.15);
}

.konfig-step-dot.done {
  background: #0B2F36;
  color: #fff;
}

.konfig-step-dot.clickable {
  cursor: pointer;
}

.konfig-step-dot.clickable:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(11, 47, 54, 0.3);
}

.konfig-step-line {
  flex: 1;
  height: 3px;
  background: #e0e0e0;
  max-width: 80px;
  transition: background 0.3s ease;
}

.konfig-step-line.done {
  background: #0B2F36;
}

/* Step Content */
.konfig-panel {
  display: none;
  animation: konfig-fadeIn 0.3s ease;
}

.konfig-panel.active {
  display: block;
}

@keyframes konfig-fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.konfig-panel h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0B2F36;
}

.konfig-panel .konfig-subtitle {
  color: #666;
  margin-bottom: 32px;
}

/* Category Cards (Step 1) */
.konfig-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 768px) {
  .konfig-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .konfig-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.konfig-card {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #fff;
  user-select: none;
  -webkit-user-select: none;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.konfig-card:hover {
  border-color: #0B2F36;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.konfig-card.selected {
  border-color: #0B2F36;
  background: #EDF4F5;
  box-shadow: inset 0 0 0 2px #0B2F36;
}

.konfig-card input[type="checkbox"] {
  display: none;
}

.konfig-card svg {
  width: 40px;
  height: 40px;
  stroke: #0B2F36;
  pointer-events: none;
  stroke-width: 1.5;
  fill: none;
  flex-shrink: 0;
}

.konfig-card svg *,
.konfig-card-label,
.konfig-card-img {
  pointer-events: none; }
.konfig-card-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.konfig-card .konfig-card-label {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.3;
}

/* ==========================================
   Step 2: Pricing Cards (Pakete pro Kategorie)
   ========================================== */
.konfig-category-section {
  display: none;
  margin-bottom: 36px;
}

.konfig-category-section.visible {
  display: block;
}

.konfig-category-section h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #0B2F36;
  padding-bottom: 8px;
  border-bottom: 2px solid #EDF4F5;
}

.konfig-pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .konfig-pricing-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.konfig-pricing-card {
  border: 2px solid #e0e0e0;
  border-radius: 14px;
  padding: 28px 20px;
  background: #fff;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  -webkit-user-select: none;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.konfig-pricing-card:hover {
  border-color: #0B2F36;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(11, 47, 54, 0.12);
}

.konfig-pricing-card.selected {
  border-color: #0B2F36;
  background: #EDF4F5;
  box-shadow: inset 0 0 0 2px #0B2F36;
}

.konfig-pricing-card.recommended {
  border-color: #0B2F36;
  box-shadow: 0 4px 16px rgba(11, 47, 54, 0.15);
}

.konfig-pricing-card input[type="radio"] {
  display: none;
}

/* Empfohlen Badge */
.konfig-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #0B2F36;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 0 12px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.konfig-pricing-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #0B2F36;
  margin-bottom: 16px;
}

.konfig-pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.konfig-pricing-card-features li {
  font-size: 14px;
  color: #555;
  padding: 4px 0;
  line-height: 1.5;
}

.konfig-pricing-card-features li::marker {
  content: none; }
.konfig-pricing-card-features li::before {
  content: '\2022  ';
  color: #0B2F36;
  font-weight: 700;
}

.konfig-pricing-card-price {
  font-size: 28px;
  font-weight: 700;
  color: #0B2F36;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
  text-align: center;
}

.konfig-pricing-card.selected .konfig-pricing-card-price {
  color: #0B2F36;
}

/* Extra Services Cards (Step 3) */
.konfig-extras {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .konfig-extras {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .konfig-extras {
    grid-template-columns: 1fr;
  }
}

.konfig-extra-card {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  background: #fff;
  user-select: none;
  -webkit-user-select: none;
}

.konfig-extra-card:hover {
  border-color: #0B2F36;
  transform: translateY(-2px);
}

.konfig-extra-card.selected {
  border-color: #0B2F36;
  background: #EDF4F5;
  box-shadow: inset 0 0 0 2px #0B2F36;
}

.konfig-extra-card input[type="checkbox"] {
  display: none;
}

.konfig-extra-card .konfig-extra-label {
  font-weight: 500;
  font-size: 15px;
  color: #333;
}

.konfig-extra-card .konfig-extra-price {
  font-size: 16px;
  font-weight: 700;
  color: #0B2F36;
  margin-top: 8px;
}

/* Contact Form (Step 4) */
.konfig-contact-form {
  display: block;
  width: 100%;
}
.konfig-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  max-width: 100%;
}
.konfig-field-full {
  grid-column: 1 / -1;
}
@media (max-width: 600px) {
  .konfig-form-grid { grid-template-columns: 1fr; }
}

.konfig-field {
  margin-bottom: 0;
}

.konfig-field label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #333;
}

.konfig-field input,
.konfig-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.konfig-field input:focus,
.konfig-field textarea:focus {
  outline: none;
  border-color: #0B2F36;
  box-shadow: 0 0 0 3px rgba(11, 47, 54, 0.1);
}

.konfig-field textarea {
  height: 100px;
  resize: vertical;
}

.konfig-field .konfig-required {
  color: #bf2c25;
}

.konfig-field .konfig-error {
  color: #bf2c25;
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

.konfig-field.has-error input {
  border-color: #bf2c25;
}

.konfig-field.has-error .konfig-error {
  display: block;
}

/* Price Box (Summary) */
.konfig-price-box {
  background: linear-gradient(135deg, #0B2F36, #174550);
  color: #fff;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}

.konfig-price-box h3 {
  font-size: 16px;
  font-weight: 400;
  color: #aac8cc;
  margin-bottom: 12px;
  text-align: center;
}

.konfig-price-total {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-align: center;
}

.konfig-price-note {
  font-size: 14px;
  color: #8ab0b7;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}

.konfig-price-items {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 16px;
}

.konfig-price-items li {
  padding: 6px 0;
  font-size: 14px;
  color: #ccc;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.konfig-price-items li .konfig-item-name {
  flex: 1;
}

.konfig-price-items li .konfig-item-price {
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  margin-left: 16px;
}

.konfig-price-items li::marker {
  content: none; }
.konfig-price-items li::before {
  content: '\2022  ';
  color: #4ac4c4;
  font-weight: 700;
  margin-right: 8px;
  flex-shrink: 0;
}

/* Navigation Buttons */
.konfig-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  gap: 16px;
}

.konfig-btn {
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: inherit;
}

.konfig-btn-back {
  background: #f0f0f0;
  color: #333;
}

.konfig-btn-back:hover {
  background: #e0e0e0;
}

.konfig-btn-next {
  background: #0B2F36;
  color: #fff;
  margin-left: auto;
}

.konfig-btn-next:hover {
  background: #174550;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(11, 47, 54, 0.3);
}

.konfig-btn-next:disabled {
  background: #0B2F36;
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.konfig-btn-submit {
  background: #0B2F36;
  color: #fff;
  padding: 16px 40px;
  font-size: 17px;
}

.konfig-btn-submit:hover {
  background: #174550;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(11, 47, 54, 0.3);
}

/* Success Message */
.konfig-success {
  text-align: center;
  padding: 60px 20px;
}

.konfig-success svg {
  width: 64px;
  height: 64px;
  stroke: #27ae60;
  stroke-width: 2;
  fill: none;
  margin-bottom: 24px;
}

.konfig-success h2 {
  font-size: 28px;
  margin-bottom: 12px;
}

.konfig-success p {
  font-size: 16px;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

/* Honeypot */
.konfig-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .konfigurator {
    padding: 24px 16px 40px;
  }

  .konfig-panel h2 {
    font-size: 22px;
  }

  .konfig-price-total {
    font-size: 32px;
  }

  .konfig-nav {
    flex-direction: column;
  }

  .konfig-btn {
    width: 100%;
    text-align: center;
  }

  .konfig-btn-next {
    margin-left: 0;
  }

  .konfig-step-dot {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .konfig-pricing-card-price {
    font-size: 22px;
  }
}

/* ============================================
   Budget-Check V2: Paket-Karten
   ============================================ */
.konfig-package-section {
  margin-bottom: 30px; }
.konfig-package-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0B2F36; }
.konfig-package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; }
@media (max-width: 768px) {
  .konfig-package-grid {
    grid-template-columns: 1fr; } }
.konfig-package-card {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px 20px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  display: flex;
  flex-direction: column; }
.konfig-package-card:hover {
  border-color: #0B2F36;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.konfig-package-card.selected,
.konfig-package-card.recommended.selected {
  border-color: #0B2F36;
  background: #f0f7f8;
  box-shadow: inset 0 0 0 2px #0B2F36; }
.konfig-package-card.recommended {
  border-color: #0B2F36; }
.konfig-package-card input[type="radio"] {
  display: none; }
.konfig-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #0B2F36;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 0 12px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px; }
.konfig-package-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0B2F36;
  margin: 0 0 12px 0; }
.konfig-package-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  flex: 1; }
.konfig-package-card ul li {
  padding: 4px 0;
  font-size: 13px;
  color: #555;
  line-height: 1.4; }
.konfig-package-card ul li::marker {
  content: none; }
.konfig-package-card ul li::before {
  content: '\2022  ';
  color: #0B2F36;
  font-weight: 700; }
.konfig-package-price {
  font-size: 24px;
  font-weight: 700;
  color: #0B2F36;
  padding-top: 12px;
  border-top: 1px solid #eee;
  margin-top: auto; }

/* Budget-Check Extras */
.konfig-extras {
  display: flex;
  flex-direction: column;
  gap: 10px; }
.konfig-extra-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s; }
.konfig-extra-item:hover {
  border-color: #0B2F36; }
.konfig-extra-item.selected {
  border-color: #0B2F36;
  background: #f0f7f8; }
.konfig-extra-item input[type="checkbox"] {
  accent-color: #0B2F36;
  width: 18px;
  height: 18px; }
.konfig-extra-label {
  flex: 1;
  font-size: 15px; }
.konfig-extra-price {
  font-weight: 600;
  color: #0B2F36;
  white-space: nowrap; }

/* ============================================
   Budget-Check V2: Question Flow + Packages
   ============================================ */

/* Step 2: Question Sections */
.budgetcheck .bc-q-section {
  display: none;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid #eee; }
.budgetcheck .bc-q-section.visible {
  display: block; }
.budgetcheck .bc-q-section:last-child {
  border-bottom: none; }
.budgetcheck .bc-q-section h3,
.budgetcheck .bc-accordion-header {
  font-size: 20px;
  font-weight: 600;
  color: #0B2F36;
  margin: 0 0 20px 0; }
.budgetcheck .bc-accordion-icon {
  display: none; }
.budgetcheck .bc-accordion-body {
  display: block; }
.budgetcheck .bc-question {
  margin-bottom: 20px; }
.budgetcheck .bc-question-label {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  margin: 0 0 10px 0; }
.budgetcheck .bc-options {
  display: grid;
  gap: 10px; }
.budgetcheck .bc-options.cols-2 {
  grid-template-columns: repeat(2, 1fr); }
.budgetcheck .bc-options.cols-3 {
  grid-template-columns: repeat(3, 1fr); }
.budgetcheck .bc-options.cols-4 {
  grid-template-columns: repeat(4, 1fr); }

@media (max-width: 768px) {
  .budgetcheck .bc-options.cols-4 {
    grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .budgetcheck .bc-options.cols-3,
  .budgetcheck .bc-options.cols-4 {
    grid-template-columns: repeat(2, 1fr); }
  .budgetcheck .bc-options.cols-2 {
    grid-template-columns: 1fr; }
}

.budgetcheck .bc-option {
  display: block;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 14px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #fff;
  user-select: none;
  -webkit-user-select: none; }
.budgetcheck .bc-option span {
  pointer-events: none; }
.budgetcheck .bc-option:hover {
  border-color: #0B2F36; }
.budgetcheck .bc-option.selected {
  border-color: #0B2F36;
  background: #EDF4F5;
  box-shadow: inset 0 0 0 2px #0B2F36; }
.budgetcheck .bc-option input[type="radio"] {
  display: none; }
.budgetcheck .bc-option span {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  line-height: 1.3; }

/* Package radio in contact form */
.budgetcheck .bc-pkg-radio {
  display: flex;
  gap: 10px;
  margin-top: 6px; }
.budgetcheck .bc-option-sm {
  padding: 10px 18px;
  font-size: 14px; }

/* Step 3: Package Cards */
.budgetcheck .bc-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 16px; }
@media (max-width: 768px) {
  .budgetcheck .bc-pkg-grid {
    grid-template-columns: 1fr; }
}
.budgetcheck .bc-pkg-card {
  border: 2px solid #e0e0e0;
  border-radius: 14px;
  padding: 28px 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s; }
.budgetcheck .bc-pkg-card:hover {
  border-color: #aaa;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.budgetcheck .bc-pkg-card.bc-recommended {
  border-color: #0B2F36;
  box-shadow: 0 8px 24px rgba(11,47,54,0.12);
  transform: scale(1.03); }
@media (max-width: 768px) {
  .budgetcheck .bc-pkg-card.bc-recommended {
    transform: none; }
}
.budgetcheck .bc-pkg-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0B2F36;
  margin: 0 0 16px 0; }
.budgetcheck .bc-pkg-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex: 1; }
.budgetcheck .bc-pkg-card ul li {
  padding: 5px 0;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
  list-style: none; }
.budgetcheck .bc-pkg-card ul li::before {
  content: '\2713  ';
  color: #0B2F36;
  font-weight: 700; }
.budgetcheck .bc-pkg-card.bc-pkg-selected {
  border-color: #0B2F36;
  background: #f0f7f8;
  box-shadow: inset 0 0 0 2px #0B2F36; }
.budgetcheck .bc-pkg-card {
  cursor: pointer; }
.budgetcheck .bc-pkg-cat-title {
  font-size: 13px;
  font-weight: 700;
  color: #0B2F36;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 12px;
  margin-bottom: 4px;
  padding-top: 8px;
  border-top: 1px solid #eee; }
.budgetcheck .bc-pkg-cat-title:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0; }
.budgetcheck .bc-pkg-price {
  padding-top: 16px;
  border-top: 1px solid #eee;
  margin-top: auto; }
.budgetcheck .bc-pkg-price-main {
  font-size: 28px;
  font-weight: 700;
  color: #0B2F36; }
.budgetcheck .bc-pkg-price-monthly {
  font-size: 14px;
  font-weight: 500;
  color: #888;
  margin-top: 4px; }

/* Step 4: Contact Wrap */
.budgetcheck .bc-contact-wrap {
  max-width: 100%; }
.budgetcheck .bc-selected-pkg-summary {
  background: #f8fafa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 28px; }

/* Step 3 Extra Services Cards */
.bc-extras-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.bc-extra-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 2px solid #e5e5e5;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.bc-extra-card:hover {
  border-color: #0B2F36;
}
.bc-extra-card:has(input:checked) {
  border-color: #0B2F36;
  background: rgba(11,47,54,0.04);
}
.bc-extra-card input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: #0B2F36;
  flex-shrink: 0;
}
.bc-extra-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bc-extra-name {
  font-weight: 600;
  font-size: 15px;
  color: #0B2F36;
}
.bc-extra-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.4;
}
.bc-extra-price {
  font-size: 13px;
  color: #888;
  margin-left: auto;
}
@media (max-width: 768px) {
  .bc-extras-list { grid-template-columns: 1fr; }
}


/* ============================================
   Mobile Optimierung Budget-Check
   ============================================ */

@media (max-width: 480px) {
  .budgetcheck {
    padding: 24px 12px 40px;
  }
  .budgetcheck-intro h3 {
    font-size: 22px;
  }
  .budgetcheck-intro p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Kategorie-Karten: 2 Spalten, aber groesser */
  .konfig-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .konfig-card {
    min-height: 100px;
    padding: 16px 10px;
    border-radius: 10px;
    gap: 6px;
  }
  .konfig-card svg {
    width: 32px;
    height: 32px;
  }
  .konfig-card .konfig-card-label {
    font-size: 12px;
    line-height: 1.2;
  }

  /* Step Indicator kleiner */
  .konfig-steps {
    margin-bottom: 28px;
  }
  .konfig-step-dot {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .konfig-step-line {
    max-width: 40px;
  }

  /* Step 2: Fragen */
  .budgetcheck .bc-q-section {
    margin-bottom: 24px;
    padding-bottom: 20px;
  }
  .budgetcheck .bc-accordion-header {
    font-size: 17px;
  }
  .budgetcheck .bc-question {
    margin-bottom: 14px;
  }
  .budgetcheck .bc-question-label {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .budgetcheck .bc-option {
    padding: 10px 12px;
    border-radius: 6px;
  }
  .budgetcheck .bc-option span {
    font-size: 13px;
  }

  /* Workshop-Themen: 6 Items -> 2 Spalten */
  .budgetcheck .bc-options.cols-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .budgetcheck .bc-options.cols-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .budgetcheck .bc-options.cols-2 {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  /* Step 3: Paket-Karten */
  .budgetcheck .bc-pkg-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .budgetcheck .bc-pkg-card {
    padding: 20px 16px;
    border-radius: 10px;
  }
  .budgetcheck .bc-pkg-card h4 {
    font-size: 18px;
  }
  .budgetcheck .bc-pkg-card ul li {
    font-size: 13px;
    padding: 3px 0;
  }
  .budgetcheck .bc-pkg-price-main {
    font-size: 22px;
  }
  .budgetcheck .bc-pkg-cat-title {
    font-size: 12px;
  }

  /* Extra Services */
  .bc-extras-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .bc-extra-card {
    padding: 12px 14px;
    white-space: normal;
    flex-wrap: wrap;
  }
  .bc-extra-name {
    font-size: 14px;
    white-space: normal;
    line-height: 1.3;
  }
  .bc-extra-price {
    font-size: 13px;
  }
  .bc-extras-section .medium-heading {
    font-size: 18px;
  }

  /* Reisekosten Hinweis */
  .bc-hint {
    font-size: 12px !important;
  }

  /* Navigation Buttons */
  .konfig-nav {
    margin-top: 24px;
    gap: 10px;
  }
  .konfig-btn {
    padding: 12px 24px;
    font-size: 15px;
  }

  /* Kontaktformular */
  .konfig-form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .konfig-field input,
  .konfig-field textarea {
    padding: 10px 12px;
    font-size: 14px;
  }

  /* Medium heading allgemein kleiner */
  .budgetcheck .medium-heading {
    font-size: 20px;
  }
  .budgetcheck .konfig-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

/* Zwischen-Breakpoint fuer Tablets */
@media (min-width: 481px) and (max-width: 768px) {
  .konfig-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .konfig-card {
    padding: 18px 12px;
    min-height: 110px;
  }
  .konfig-card svg {
    width: 36px;
    height: 36px;
  }
  .konfig-card .konfig-card-label {
    font-size: 13px;
  }
  .bc-extras-list {
    grid-template-columns: 1fr;
  }
  .bc-extra-card {
    white-space: normal;
  }
}


/* ============================================
   Fix: Zentrierte gleich grosse Kacheln + Extra-Cards
   ============================================ */

/* Kategorie-Karten: gleiche Hoehe + zentriert */
.konfig-cards {
  justify-items: center;
}
.konfig-card {
  width: 100%;
  aspect-ratio: auto;
}

/* Workshop Themen-Kacheln: gleiche Hoehe */
.budgetcheck .bc-options {
  align-items: stretch;
}
.budgetcheck .bc-option {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
}

/* Extra-Cards: Checkbox links, Text+Preis rechts gestapelt */
.bc-extra-card {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 10px;
  white-space: normal;
}
.bc-extra-card input[type='checkbox'] {
  grid-row: 1;
  grid-column: 1;
}
.bc-extra-name {
  grid-row: 1;
  grid-column: 2;
  white-space: normal;
  line-height: 1.3;
}
.bc-extra-price {
  grid-row: 1;
  grid-column: 3;
  white-space: nowrap;
}

@media (max-width: 480px) {
  /* Kategorie-Karten: gleiche Hoehe erzwingen */
  .konfig-card {
    min-height: 90px;
    justify-content: center;
    align-items: center;
  }
  .konfig-card .konfig-card-label {
    font-size: 11px;
    line-height: 1.25;
    text-align: center;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  /* Workshop-Optionen: gleiche Hoehe */
  .budgetcheck .bc-option {
    min-height: 48px;
    padding: 8px 10px;
    font-size: 13px;
    text-align: center;
    word-break: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
  }
  .budgetcheck .bc-option span {
    font-size: 12px;
    line-height: 1.25;
  }

  /* Extra-Cards mobil: einzeilig wenn moeglich, sonst wrap */
  .bc-extra-card {
    grid-template-columns: 22px 1fr;
    grid-template-rows: auto auto;
    gap: 4px 8px;
    padding: 12px 12px;
  }
  .bc-extra-card input[type='checkbox'] {
    grid-row: 1 / 3;
    grid-column: 1;
    align-self: center;
  }
  .bc-extra-name {
    grid-row: 1;
    grid-column: 2;
    font-size: 13px;
  }
  .bc-extra-price {
    grid-row: 2;
    grid-column: 2;
    font-size: 12px;
    color: #0B2F36;
    font-weight: 600;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .bc-extra-card {
    white-space: normal;
  }
}
