/* Prevention Journey wizard */
.pj-page main {
    max-width: 720px;
    margin: 0 auto;
    padding: 1.5rem 1rem 3rem;
}

.pj-hero {
    background: var(--gradient-spiritual);
    color: var(--hero-text-on-green);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 28px rgba(44, 60, 52, 0.16);
}

.pj-hero p {
    margin: 0;
    color: var(--hero-text-muted-on-green, rgba(255, 255, 255, 0.92));
    line-height: 1.6;
    font-size: 1rem;
}

.pj-hero h1 {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    color: var(--hero-text-on-green, #ffffff);
}

.pj-steps {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.pj-step-dot {
    flex: 1;
    min-width: 70px;
    text-align: center;
    font-size: 0.75rem;
    color: #888;
}

.pj-step-dot span {
    display: block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    background: #e8e8e8;
    color: #555;
    margin: 0 auto 0.35rem;
    font-weight: 600;
}

.pj-step-dot.active span {
    background: #98A869;
    color: white;
}

.pj-step-dot.done span {
    background: #2C3C34;
    color: white;
}

.pj-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
}

.pj-card h2 {
    margin: 0 0 0.5rem;
    color: #2C3C34;
    font-size: 1.25rem;
}

.pj-card .pj-desc {
    color: #666;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.pj-progress {
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.pj-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #98A869, #667eea);
    transition: width 0.25s ease;
}

.pj-question-text {
    font-size: 1.1rem;
    color: #2C3C34;
    margin-bottom: 1rem;
}

.pj-options .pj-option {
    display: block;
    padding: 0.85rem 1rem;
    margin-bottom: 0.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.pj-options .pj-option:hover {
    border-color: #98A869;
    background: #f8faf5;
}

.pj-options .pj-option.selected {
    border-color: #98A869;
    background: rgba(152, 168, 105, 0.15);
}

.pj-options input {
    margin-right: 0.5rem;
}

.pj-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 1.25rem;
    gap: 0.75rem;
}

.pj-snapshot {
    background: #F8F6F0;
    border-left: 4px solid #98A869;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.pj-snapshot h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    color: #2C3C34;
}

.pj-assessment-results {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 600px) {
    .pj-assessment-results {
        grid-template-columns: 1fr 1fr;
    }
}

.pj-result-block {
    background: #F8F6F0;
    border-radius: 10px;
    padding: 1.25rem;
}

.pj-result-block h3 {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
    color: #2C3C34;
}

.pj-result-score {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.pj-result-score-value {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
}

.pj-result-score-label {
    font-size: 0.9rem;
    opacity: 0.95;
}

.pj-domain-list,
.pj-guna-bars {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.pj-domain-row,
.pj-guna-row {
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 0.5rem;
    align-items: center;
    font-size: 0.85rem;
}

.pj-domain-name,
.pj-guna-label {
    color: #444;
}

.pj-domain-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.pj-domain-fill {
    height: 100%;
    background: #98A869;
    border-radius: 4px;
}

.pj-domain-fill.pj-guna-sattva { background: #667eea; }
.pj-domain-fill.pj-guna-rajas { background: #e17055; }
.pj-domain-fill.pj-guna-tamas { background: #636e72; }

.pj-domain-pct {
    font-weight: 600;
    color: #2C3C34;
    min-width: 2.5rem;
    text-align: right;
}

.pj-result-dominant {
    margin: 0 0 0.35rem;
    color: #2C3C34;
}

.pj-result-desc {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.pj-result-note {
    margin: 0.75rem 0 0;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.5;
}

.pj-modality-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

@media (min-width: 600px) {
    .pj-modality-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pj-modality {
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 1rem;
    background: #fff;
}

.pj-modality h4 {
    margin: 0 0 0.35rem;
    color: #2C3C34;
}

.pj-modality p {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.pj-daily-list {
    margin: 0;
    padding-left: 1.25rem;
    color: #444;
    line-height: 1.7;
}

.pj-checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.pj-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #eee;
}

.pj-checklist input {
    margin-top: 0.2rem;
    accent-color: #98A869;
}

.pj-hidden {
    display: none !important;
}
