.pc-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pc-header {
  margin-bottom: 3rem;
}

.pc-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c5282;
}

.pc-header p {
  color: #718096;
}

.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

@media (max-width: 768px) {
  .pc-grid {
    grid-template-columns: 1fr;
  }
}

.pc-calculator-panel {
  background: #d5e8f3;
  border-radius: 1.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}

.pc-result-panel {
  background: #2c5282;
  border-radius: 1.5rem;
  padding: 2.5rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pc-icon-wrapper {
  background: #2c5282;
  width: 70px;
  height: 70px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.5rem;
}

.pc-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.pc-form-group {
  margin-bottom: 2rem;
}

.pc-form-group input {
  width: 100%;
  padding: 1rem;
  border-radius: 8px;
  border: none;
}

.pc-slider-container {
  position: relative;
  padding-top: 2rem;
}

.pc-slider-value {
  position: absolute;
  top: 0;
  left: 0;
  background: #2c5282;
  color: white;
  padding: 6px 12px;
  border-radius: 8px;
  transform: translateX(-50%);
  transition: left 0.1s;
}

.pc-slider-container input[type="range"] {
  width: 100%;
}

.pc-result-badge {
  background: #ecc94b;
  color: #2d3748;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 700;
}

.pc-result-amount {
  font-size: 4rem;
  font-weight: 700;
  margin: 1.5rem 0;
}

.pc-disclaimer {
  font-size: 0.875rem;
  color: #a0aec0;
}

.pc-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.pc-apply-button {
  background: #a0d7f0;
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  font-size: 1.25rem;
  border: none;
  cursor: pointer;
}
