@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

.prc-wrapper {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
  color: #2d2520;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.prc-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.prc-card {
  background: #fff;
  border: 1px solid #f0e8e4;
  border-radius: 8px;
  overflow: hidden;
}

.prc-card-padded {
  padding: 24px;
}

@media (min-width: 640px) {
  .prc-card-padded {
    padding: 40px;
  }
  .prc-wrapper {
    padding: 32px 16px;
  }
}

.prc-center { text-align: center; }

.prc-title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #2d2520;
  margin-bottom: 8px;
}

@media (min-width: 640px) {
  .prc-title { font-size: 30px; }
}

.prc-subtitle {
  color: #8b7e74;
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 16px;
}

.prc-muted {
  color: #8b7e74;
  font-size: 13px;
}

.prc-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: rgba(212, 105, 122, 0.1);
}

.prc-icon-circle svg {
  width: 36px;
  height: 36px;
  stroke: #d4697a;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prc-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px 0;
}

@media (min-width: 640px) {
  .prc-categories-grid { grid-template-columns: repeat(6, 1fr); }
}

.prc-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.prc-category-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prc-category-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prc-category-label {
  font-size: 11px;
  font-weight: 500;
  color: #8b7e74;
}

.prc-info-box {
  background: rgba(212, 105, 122, 0.06);
  border-radius: 6px;
  padding: 16px;
  margin: 12px 0;
}

.prc-info-box p {
  font-size: 13px;
  color: #8b7e74;
  line-height: 1.7;
}

.prc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 6px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.prc-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.prc-btn:active { transform: translateY(0); }

.prc-btn-primary {
  background: #d4697a;
  color: #fff;
  padding: 12px 32px;
  font-size: 15px;
}

.prc-btn-lg {
  padding: 14px 48px;
  font-size: 16px;
}

.prc-btn-outline {
  background: transparent;
  color: #8b7e74;
  border: 1px solid #f0e8e4;
  padding: 10px 20px;
  font-size: 14px;
}

.prc-btn-ghost {
  background: transparent;
  color: #8b7e74;
  padding: 8px 16px;
  font-size: 14px;
}

.prc-btn-ghost:hover { background: rgba(0,0,0,0.04); }

.prc-btn-full { width: 100%; }

@media (min-width: 640px) {
  .prc-btn-full { width: auto; padding-left: 48px; padding-right: 48px; }
}

.prc-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prc-disclaimer {
  text-align: center;
  font-size: 11px;
  color: #a89e96;
  margin-top: 24px;
  padding-bottom: 24px;
}

/* Progress */
.prc-progress-wrap {
  margin-bottom: 20px;
}

.prc-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.prc-progress-section-label {
  font-size: 14px;
  font-weight: 600;
}

.prc-progress-count {
  font-size: 13px;
  color: #8b7e74;
}

.prc-progress-bar {
  width: 100%;
  height: 8px;
  background: #f5eeeb;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.prc-progress-fill {
  height: 100%;
  background: #d4697a;
  border-radius: 4px;
  transition: width 0.4s ease;
}

.prc-section-dots {
  display: flex;
  gap: 6px;
}

.prc-section-dot {
  flex: 1;
  height: 6px;
  border-radius: 3px;
  min-width: 24px;
  transition: background 0.3s;
}

.prc-dot-done { background: #d4697a; }
.prc-dot-current { background: rgba(212, 105, 122, 0.5); }
.prc-dot-pending { background: #f5eeeb; }

/* Checklist Section */
.prc-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px 24px 12px;
}

.prc-section-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prc-section-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prc-section-title {
  font-size: 18px;
  font-weight: 700;
}

@media (min-width: 640px) {
  .prc-section-title { font-size: 20px; }
}

.prc-questions {
  padding: 0 24px 24px;
}

.prc-question {
  padding: 12px 0;
}

.prc-question + .prc-question {
  border-top: 1px solid rgba(240, 232, 228, 0.5);
}

.prc-question-text {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.prc-question-text span { flex: 1; }

.prc-tooltip-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #a89e96;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.prc-tooltip-btn svg {
  width: 16px;
  height: 16px;
}

.prc-tooltip-content {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  right: -8px;
  background: #2d2520;
  color: #fff;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 6px;
  max-width: 220px;
  width: max-content;
  z-index: 100;
  line-height: 1.5;
  font-weight: 400;
}

.prc-tooltip-btn:hover .prc-tooltip-content,
.prc-tooltip-btn:focus .prc-tooltip-content {
  display: block;
}

.prc-radio-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.prc-radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #f0e8e4;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  background: #fff;
  min-height: 36px;
}

.prc-radio-label:hover {
  border-color: rgba(212, 105, 122, 0.3);
}

.prc-radio-label.prc-selected {
  border-color: rgba(212, 105, 122, 0.4);
  background: rgba(212, 105, 122, 0.06);
}

.prc-radio-label input {
  accent-color: #d4697a;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Navigation */
.prc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 20px 0 8px;
}

/* Results */
.prc-results-space > * + * {
  margin-top: 20px;
}

.prc-circular-progress {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
}

.prc-circular-progress svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.prc-circular-bg {
  fill: none;
  stroke: #f5eeeb;
  stroke-width: 10;
}

.prc-circular-fill {
  fill: none;
  stroke-width: 10;
  stroke-linecap: round;
  transition: stroke-dashoffset 1.2s ease-out;
}

.prc-circular-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.prc-percentage {
  font-size: 36px;
  font-weight: 700;
}

.prc-readiness-label-text {
  font-size: 13px;
  color: #8b7e74;
}

.prc-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.prc-results-msg {
  color: #8b7e74;
  font-size: 14px;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}

.prc-list-header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 24px 10px;
}

.prc-list-header svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.prc-list {
  padding: 0 24px 16px;
  list-style: none;
}

.prc-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  padding: 4px 0;
  line-height: 1.5;
}

.prc-list li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 3px;
}

.prc-list-section {
  color: #8b7e74;
}

.prc-cta-card {
  background: rgba(212, 105, 122, 0.04);
  border-color: rgba(212, 105, 122, 0.12);
}

.prc-cta-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.prc-cta-desc {
  font-size: 13px;
  color: #8b7e74;
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 16px;
}

/* Starter Pack Page */
.prc-sp-hero {
  background: rgba(212, 105, 122, 0.04);
  border-bottom: 1px solid #f0e8e4;
  padding: 24px 0 32px;
  margin: -16px -16px 0;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 640px) {
  .prc-sp-hero {
    margin: -32px -16px 0;
    padding: 32px 16px 40px;
  }
}

.prc-sp-badge {
  display: inline-block;
  background: #f5eeeb;
  color: #6b5e54;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.prc-sp-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

@media (min-width: 640px) {
  .prc-sp-title { font-size: 34px; }
}

.prc-sp-subtitle {
  color: #8b7e74;
  font-size: 15px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 20px;
}

.prc-sp-sections {
  margin-top: 32px;
}

.prc-sp-sections-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.prc-sp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .prc-sp-grid { grid-template-columns: 1fr 1fr; }
}

.prc-sp-item {
  padding: 20px;
  display: flex;
  gap: 16px;
}

.prc-sp-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prc-sp-item-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prc-sp-item-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.prc-sp-item-desc {
  font-size: 13px;
  color: #8b7e74;
  line-height: 1.6;
}

.prc-sp-highlights {
  margin-top: 32px;
}

.prc-sp-highlights-title {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  padding-top: 24px;
}

.prc-sp-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 24px 24px;
}

@media (min-width: 480px) {
  .prc-sp-highlights-grid { grid-template-columns: 1fr 1fr; }
}

.prc-sp-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.prc-sp-highlight-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: #4d9a6e;
}

.prc-sp-testimonial {
  margin-top: 32px;
  background: rgba(212, 105, 122, 0.04);
  border-color: rgba(212, 105, 122, 0.12);
}

.prc-sp-stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-bottom: 12px;
  padding-top: 24px;
}

.prc-sp-stars svg {
  width: 18px;
  height: 18px;
  fill: #c4913e;
  stroke: #c4913e;
}

.prc-sp-quote {
  font-size: 14px;
  color: #8b7e74;
  font-style: italic;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 24px;
}

.prc-sp-author {
  font-size: 12px;
  color: #a89e96;
  margin-top: 12px;
  padding-bottom: 24px;
}

.prc-sp-bottom {
  margin-top: 32px;
  padding-bottom: 16px;
}

.prc-sp-bottom-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.prc-sp-bottom-desc {
  font-size: 14px;
  color: #8b7e74;
  max-width: 420px;
  margin: 0 auto 16px;
}

.prc-hidden { display: none; }

.prc-fade-in {
  animation: prcFadeIn 0.5s ease-out forwards;
}

@keyframes prcFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.prc-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.prc-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  color: #8b7e74;
  font-size: 14px;
}

.prc-back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #8b7e74;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}

.prc-back-link:hover {
  background: rgba(0,0,0,0.04);
  color: #6b5e54;
}

.prc-back-link svg {
  width: 16px;
  height: 16px;
}
