/* --- Page: Wycena (Consultation) --- */
.wycena-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.wycena-form-wrap {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, .06);
}

.step-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
  transition: background 0.2s, width 0.2s;
}

.step-dot--active {
  background: linear-gradient(135deg, #e10000 0%, #8b0000 100%);
  width: 24px;
  border-radius: 4px;
}

.form-step {
  display: none;
}

.form-step--active {
  display: block;
}

.step-counter {
  font-size: 0.78rem;
  font-weight: 700;
  color: #e10000;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 8px;
}

.step-hint {
  font-size: 0.78rem;
  color: #94a3b8;
  margin: -4px 0 18px;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 24px;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.choice-btn {
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s ease;
}

.choice-btn:hover {
  border-color: #e10000;
  color: #e10000;
  background: #fff5f5;
}

.choice-btn.selected {
  border-color: #e10000;
  background: linear-gradient(135deg, #e10000 0%, #8b0000 100%);
  color: #fff;
}

.btn-next {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #e10000 0%, #8b0000 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
}

.btn-next:disabled {
  background: #94a3b8;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-next:not(:disabled):hover {
  background: #e10000;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-prev {
  padding: 14px 24px;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  text-wrap: nowrap;
}

.btn-prev:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.btn-prev--step3 {
  display: inline-block;
  margin-bottom: 16px;
  padding: 8px 16px;
  font-size: 0.8rem;
}

.selection-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.83rem;
  color: #475569;
  margin-bottom: 20px;
  min-height: 40px;
}

.wycena-sidebar__box {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, .06);
}

.wycena-sidebar__box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}

.wycena-sidebar__box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wycena-sidebar__box ul li {
  font-size: 0.85rem;
  color: #475569;
  padding-left: 20px;
  position: relative;
}

.wycena-sidebar__box ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.wycena-form-wrap .wpcf7-submit {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #e10000 0%, #8b0000 100%);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  margin-top: 8px;
  letter-spacing: 0;
}

.wycena-form-wrap .wpcf7-submit:hover {
  background: #e10000;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1024px) {
  .wycena-layout {
    grid-template-columns: 1fr;
  }

  .wycena-form-wrap {
    padding: 24px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .wycena-sidebar {
    order: -1;
  }
}