/* Biomarker Quiz Styles */
/* Matches the EllaDx gen-z design system */

/* ===== Quiz Hero Section ===== */
.quiz-hero-section {
    padding: calc(var(--space-24) + 80px) 0 var(--space-12);
    background: var(--bg-primary);
    text-align: center;
}

.quiz-hero-section .section-header {
    margin-bottom: 0;
}

.quiz-hero-section .section-title {
    font-size: clamp(2rem, 5vw, 3rem);
}

/* ===== Quiz Section ===== */
.quiz-section {
    padding: var(--space-8) 0 var(--space-20);
    background: var(--bg-secondary);
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-primary);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

/* ===== Progress Bar ===== */
.quiz-progress {
    margin-bottom: var(--space-8);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(143, 168, 138, 0.15);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-3);
}

.progress-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid));
    border-radius: var(--radius-full);
    transition: width 0.4s ease;
}

.progress-text {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    text-align: center;
    display: block;
}

/* ===== Quiz Steps ===== */
.quiz-form {
    position: relative;
}

.quiz-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

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

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

.quiz-question {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    text-align: center;
}

.quiz-instruction {
    font-size: 1rem;
    color: var(--text-tertiary);
    text-align: center;
    margin-bottom: var(--space-6);
}

/* ===== Quiz Options ===== */
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.quiz-options.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
}

.quiz-options.radio-list {
    max-width: 400px;
    margin: 0 auto;
}

.quiz-option {
    cursor: pointer;
    position: relative;
}

.quiz-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-box {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: var(--bg-secondary);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.quiz-option:hover .option-box {
    border-color: rgba(143, 168, 138, 0.3);
    background: rgba(143, 168, 138, 0.05);
}

.quiz-option input:checked + .option-box {
    border-color: var(--primary);
    background: rgba(143, 168, 138, 0.1);
    box-shadow: 0 0 0 3px rgba(143, 168, 138, 0.15);
}

.option-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.option-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.option-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
}

/* Radio list specific styling */
.radio-list .option-box {
    justify-content: center;
    padding: var(--space-5) var(--space-6);
}

.radio-list .option-text {
    font-size: 1.125rem;
}

/* ===== Quiz Navigation ===== */
.quiz-nav {
    display: flex;
    justify-content: space-between;
    gap: var(--space-4);
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.quiz-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    cursor: pointer;
}

.quiz-btn svg {
    width: 20px;
    height: 20px;
}

.quiz-btn-back {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.quiz-btn-back:hover:not(:disabled) {
    border-color: rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
}

.quiz-btn-back:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.quiz-btn-next,
.quiz-btn-submit {
    background: var(--primary);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(143, 168, 138, 0.3);
}

.quiz-btn-next:hover,
.quiz-btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(143, 168, 138, 0.4);
}

.quiz-btn-next svg,
.quiz-btn-submit svg {
    transition: transform var(--transition-base);
}

.quiz-btn-next:hover svg,
.quiz-btn-submit:hover svg {
    transform: translateX(3px);
}

/* ===== Results Section ===== */
.quiz-results {
    animation: fadeIn 0.5s ease;
}

.results-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.results-tag {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, rgba(143, 168, 138, 0.2), rgba(168, 196, 163, 0.2));
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gradient-start);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.results-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.results-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Results Panels */
.results-panels {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-8);
}

.result-panel {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.result-panel:hover {
    border-color: rgba(143, 168, 138, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.result-panel.priority-high {
    border-left: 4px solid var(--primary);
    background: rgba(143, 168, 138, 0.05);
}

.result-panel.priority-medium {
    border-left: 4px solid #d4b896;
}

.result-panel.priority-low {
    border-left: 4px solid var(--text-tertiary);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-3);
}

.panel-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.panel-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.panel-badge.high {
    background: rgba(143, 168, 138, 0.2);
    color: var(--primary-dark);
}

.panel-badge.medium {
    background: rgba(212, 184, 150, 0.2);
    color: #a08050;
}

.panel-badge.low {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-tertiary);
}

.panel-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-4);
    line-height: 1.6;
}

.panel-biomarkers {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.biomarker-tag {
    display: inline-flex;
    align-items: center;
    padding: var(--space-2) var(--space-3);
    background: #ffffff;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Results Summary */
.results-summary {
    background: linear-gradient(135deg, rgba(143, 168, 138, 0.1), rgba(168, 196, 163, 0.1));
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-8);
    border: 1px solid rgba(143, 168, 138, 0.2);
}

.summary-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.summary-title svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.summary-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.summary-stats {
    display: flex;
    gap: var(--space-6);
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(143, 168, 138, 0.2);
}

.summary-stat {
    text-align: center;
}

.summary-stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.summary-stat-label {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

/* Results CTA */
.results-cta {
    text-align: center;
}

.results-cta > p {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

.results-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    margin-bottom: var(--space-6);
}

.results-buttons .btn-primary-genz,
.results-buttons .btn-secondary-genz {
    min-width: 180px;
    justify-content: center;
}

.retake-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: transparent;
    border: none;
    color: var(--text-tertiary);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition-base);
}

.retake-btn:hover {
    color: var(--text-primary);
}

.retake-btn svg {
    width: 18px;
    height: 18px;
}

/* Results Actions */
.results-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
    align-items: center;
    margin-top: var(--space-6);
}

/* ===== Email Capture Section ===== */
.results-email-capture {
    background: linear-gradient(135deg, rgba(143, 168, 138, 0.1), rgba(168, 196, 163, 0.1));
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    margin-bottom: var(--space-6);
    border: 1px solid rgba(143, 168, 138, 0.2);
}

.email-capture-header {
    text-align: center;
    margin-bottom: var(--space-6);
}

.email-capture-header .email-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin-bottom: var(--space-4);
}

.email-capture-header h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.email-capture-header p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

.email-capture-form {
    max-width: 500px;
    margin: 0 auto;
}

.email-input-group {
    display: flex;
    gap: var(--space-3);
}

.email-input-group input {
    flex: 1;
    padding: var(--space-4) var(--space-5);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-family: var(--font-body);
    background: white;
    transition: all var(--transition-base);
}

.email-input-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(143, 168, 138, 0.15);
}

.email-input-group input::placeholder {
    color: var(--text-tertiary);
}

.email-input-group .btn-primary-genz {
    white-space: nowrap;
    padding: var(--space-4) var(--space-6);
}

.email-disclaimer {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    text-align: center;
    margin-top: var(--space-3);
}

/* Email Success State */
.results-email-success {
    background: linear-gradient(135deg, rgba(143, 168, 138, 0.15), rgba(168, 196, 163, 0.15));
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    margin-bottom: var(--space-6);
    border: 1px solid rgba(143, 168, 138, 0.3);
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.results-email-success .success-icon {
    width: 56px;
    height: 56px;
    color: var(--primary);
    margin-bottom: var(--space-4);
}

.results-email-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.results-email-success p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
    .quiz-hero-section {
        padding: calc(var(--space-20) + 80px) 0 var(--space-8);
    }

    .quiz-section {
        padding: var(--space-4) 0 var(--space-12);
    }

    .quiz-container {
        padding: var(--space-6);
        margin: 0 var(--space-4);
        border-radius: var(--radius-xl);
    }

    .quiz-question {
        font-size: 1.25rem;
    }

    .quiz-instruction {
        font-size: 0.9375rem;
        margin-bottom: var(--space-5);
    }

    .quiz-options.checkbox-grid {
        grid-template-columns: 1fr;
    }

    .option-box {
        padding: var(--space-4);
    }

    .option-icon {
        font-size: 1.25rem;
    }

    .option-icon svg {
        width: 22px;
        height: 22px;
    }

    .option-text {
        font-size: 0.9375rem;
    }

    .radio-list .option-box {
        padding: var(--space-4) var(--space-5);
    }

    .radio-list .option-text {
        font-size: 1rem;
    }

    .quiz-nav {
        flex-direction: column-reverse;
        gap: var(--space-3);
    }

    .quiz-btn {
        width: 100%;
        justify-content: center;
    }

    .quiz-btn-back {
        order: 2;
    }

    /* Results mobile */
    .results-title {
        font-size: 1.5rem;
    }

    .result-panel {
        padding: var(--space-5);
    }

    .panel-header {
        flex-direction: column;
        gap: var(--space-2);
    }

    .panel-title {
        font-size: 1.125rem;
    }

    .summary-stats {
        flex-direction: column;
        gap: var(--space-3);
    }

    .results-buttons {
        flex-direction: column;
    }

    .results-buttons .btn-primary-genz,
    .results-buttons .btn-secondary-genz {
        width: 100%;
    }

    /* Email capture mobile */
    .results-email-capture {
        padding: var(--space-6);
    }

    .email-capture-header h3 {
        font-size: 1.25rem;
    }

    .email-input-group {
        flex-direction: column;
    }

    .email-input-group .btn-primary-genz {
        width: 100%;
        justify-content: center;
    }

    .results-actions {
        flex-direction: column;
        width: 100%;
    }

    .results-actions .btn-primary-genz {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .quiz-container {
        padding: var(--space-5);
        margin: 0 var(--space-3);
    }

    .quiz-question {
        font-size: 1.125rem;
    }

    .option-box {
        padding: var(--space-3);
        gap: var(--space-2);
    }

    .option-icon {
        font-size: 1.125rem;
    }

    .option-icon svg {
        width: 20px;
        height: 20px;
    }

    .option-text {
        font-size: 0.875rem;
    }
}

/* ===== Loading Skeleton ===== */
.results-skeleton {
    animation: fadeIn 0.3s ease;
}

.skeleton-pulse {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: pulse 1.5s ease-in-out infinite;
    border-radius: var(--radius-md);
}

@keyframes pulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.skeleton-tag {
    width: 150px;
    height: 28px;
    margin: 0 auto var(--space-4);
    border-radius: var(--radius-full);
}

.skeleton-title {
    width: 280px;
    height: 36px;
    margin: 0 auto var(--space-3);
}

.skeleton-subtitle {
    width: 350px;
    height: 20px;
    margin: 0 auto;
}

.skeleton-chart {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
}

.skeleton-chart-bar {
    height: 40px;
    margin-bottom: var(--space-3);
    border-radius: var(--radius-md);
}

.skeleton-chart-bar:last-child {
    margin-bottom: 0;
}

.skeleton-panels {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.skeleton-panel {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
}

.skeleton-panel-title {
    width: 180px;
    height: 24px;
    margin-bottom: var(--space-3);
}

.skeleton-panel-text {
    width: 100%;
    height: 16px;
    margin-bottom: var(--space-4);
}

.skeleton-tags {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.skeleton-biomarker {
    width: 100px;
    height: 32px;
    border-radius: var(--radius-full);
}

.skeleton-summary {
    padding: var(--space-4);
}

.skeleton-summary-title {
    width: 200px;
    height: 24px;
    margin-bottom: var(--space-3);
}

.skeleton-summary-text {
    width: 100%;
    height: 60px;
    margin-bottom: var(--space-4);
}

.skeleton-stats {
    display: flex;
    gap: var(--space-6);
    justify-content: center;
}

.skeleton-stat {
    width: 80px;
    height: 60px;
    border-radius: var(--radius-lg);
}

/* ===== Priority Chart ===== */
.priority-chart {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.chart-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.chart-title svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.chart-subtitle {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: var(--space-5);
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.priority-chart-row {
    display: grid;
    grid-template-columns: 100px 1fr 90px;
    gap: var(--space-3);
    align-items: center;
}

.chart-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chart-bar-container {
    height: 28px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: var(--space-3);
    transition: width 0.8s ease-out;
    min-width: 40px;
}

.chart-bar.priority-high {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-mid));
}

.chart-bar.priority-medium {
    background: linear-gradient(90deg, #d4b896, #e5cdb0);
}

.chart-bar.priority-low {
    background: linear-gradient(90deg, #a0a0a0, #b8b8b8);
}

.chart-bar-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.chart-priority-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-align: center;
    white-space: nowrap;
}

.chart-priority-badge.high {
    background: rgba(143, 168, 138, 0.2);
    color: var(--primary-dark);
}

.chart-priority-badge.medium {
    background: rgba(212, 184, 150, 0.2);
    color: #a08050;
}

.chart-priority-badge.low {
    background: rgba(0, 0, 0, 0.08);
    color: var(--text-tertiary);
}

/* ===== Biomarker Cards ===== */
.panel-biomarkers-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.biomarker-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-base);
}

.biomarker-card:hover {
    border-color: rgba(143, 168, 138, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.biomarker-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-2);
}

.biomarker-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.biomarker-insight {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-3);
}

.biomarker-citation {
    background: rgba(143, 168, 138, 0.05);
    border-radius: var(--radius-md);
    padding: var(--space-3);
    border-left: 3px solid var(--primary);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.biomarker-citation > svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    display: none;
}

.citation-text {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    line-height: 1.5;
    font-style: italic;
}

.citation-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-base);
}

.citation-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.citation-link svg {
    width: 12px;
    height: 12px;
}

/* Mobile responsive for new components */
@media (max-width: 768px) {
    .priority-chart-row {
        grid-template-columns: 80px 1fr 70px;
        gap: var(--space-2);
    }

    .chart-label {
        font-size: 0.75rem;
    }

    .chart-bar-container {
        height: 24px;
    }

    .chart-bar-value {
        font-size: 0.6875rem;
    }

    .chart-priority-badge {
        font-size: 0.625rem;
        padding: 2px var(--space-1);
    }

    .skeleton-title,
    .skeleton-subtitle {
        width: 100%;
        max-width: 280px;
    }

    .skeleton-stats {
        flex-direction: column;
        gap: var(--space-3);
    }

    .biomarker-card {
        padding: var(--space-3);
    }

    .biomarker-insight {
        font-size: 0.75rem;
    }

    .biomarker-citation {
        padding: var(--space-2);
    }

    .citation-text {
        font-size: 0.6875rem;
    }
}

@media (max-width: 480px) {
    .priority-chart-row {
        grid-template-columns: 1fr;
        gap: var(--space-1);
    }

    .chart-label {
        font-size: 0.8125rem;
        font-weight: 600;
    }

    .chart-bar-container {
        height: 20px;
    }

    .chart-priority-badge {
        display: none;
    }

    .skeleton-chart-bar {
        height: 30px;
    }
}

/* ===== SEO Quiz Info Section ===== */
.quiz-info-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

.quiz-info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
}

.quiz-info-content {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.quiz-info-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 600;
    color: #1a1a1a;
    margin: 32px 0 16px 0;
}

.quiz-info-content p {
    margin-bottom: 16px;
}

.quiz-info-final {
    margin-bottom: 0;
}

/* Mobile optimizations for quiz info section */
@media (max-width: 768px) {
    .quiz-info-section {
        padding: 40px 20px;
    }

    .quiz-info-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .quiz-info-subtitle {
        font-size: 18px;
        margin: 24px 0 12px 0;
    }

    .quiz-info-content {
        font-size: 15px;
    }

    .quiz-info-content p {
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .quiz-info-section {
        padding: 32px 16px;
    }

    .quiz-info-title {
        font-size: 22px;
    }

    .quiz-info-subtitle {
        font-size: 17px;
    }

    .quiz-info-content {
        font-size: 14px;
        line-height: 1.6;
    }
}
