/* ========================================
   CEO Test Quiz - Styles
   NK Brand: Bright Mode
   ======================================== */

:root {
    /* Brand Colors */
    --nk-black: #000000;
    --nk-off-white: #F7F3ED;
    --nk-white: #ffffff;
    --nk-blue: #7FABC8;
    --nk-green: #A6BEA4;
    --nk-yellow: #C6A55B;
    --nk-orange: #E08F6A;
    --nk-lilac: #C7B9D3;

    /* Typography */
    --nk-font-serif: 'Crimson Pro', Georgia, serif;
    --nk-font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions */
    --nk-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --nk-transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Reset & Base
   ======================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--nk-font-sans);
    background-color: var(--nk-off-white);
    color: var(--nk-black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3 {
    font-family: var(--nk-font-serif);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.75rem, 7vw, 4rem); }
h2 { font-size: clamp(1.875rem, 5vw, 2.75rem); }
h3 { font-size: clamp(1.375rem, 3vw, 1.75rem); }

/* ========================================
   Layout
   ======================================== */

.screen {
    display: none;
    opacity: 0;
    transition: opacity var(--nk-transition-fast);
}

.screen.active {
    display: block;
    opacity: 1;
}

.container {
    max-width: 760px;
    margin: 0 auto;
    padding: 1.5rem 1.25rem;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    font-family: var(--nk-font-sans);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.875rem 2.25rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--nk-transition-fast);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--nk-blue);
    color: var(--nk-black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(127, 171, 200, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--nk-black);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
}

.btn-full { width: 100%; }

/* ========================================
   Intro Screen
   ======================================== */

#intro .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Intro Centered Layout */
.intro-centered {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.intro-centered h1 {
    margin-bottom: 0.5rem;
    color: var(--nk-black);
}

.tagline {
    font-size: 1.25rem;
    color: var(--nk-blue);
    margin-bottom: 2rem;
    font-weight: 500;
}

/* Intro Chart */
.intro-chart {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.intro-chart img {
    max-width: 380px;
    height: auto;
}

/* Intro Body - Centered */
.intro-body {
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.intro-body p {
    margin-bottom: 1.5rem;
}

.intro-body p:last-child {
    margin-bottom: 0;
}

/* Core Question - Isolated */
.intro-body .core-question {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--nk-black);
}

/* Metrics - Reduced Visual Weight */
.intro-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 1.5rem;
}

.metric-item {
    text-align: center;
}

.metric-number {
    display: block;
    font-family: var(--nk-font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--nk-blue);
    line-height: 1.2;
    opacity: 0.85;
}

.metric-label {
    font-size: 0.6875rem;
    color: var(--nk-blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
}

/* CTA */
.intro-cta {
    text-align: center;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .intro-chart img {
        max-width: 280px;
    }

    .intro-metrics {
        gap: 2rem;
    }
}

/* Legacy - keep for other pages */
.test-overview {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .test-overview {
        justify-content: center;
    }
}

.overview-item {
    text-align: center;
}

.overview-number {
    display: block;
    font-family: var(--nk-font-serif);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--nk-blue);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.overview-label {
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ========================================
   Quiz Screen
   ======================================== */

#quiz {
    padding-bottom: 1.5rem;
}

.quiz-header {
    position: sticky;
    top: 0;
    background: rgba(247, 243, 237, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.875rem 1.25rem;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.progress-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--nk-blue), var(--nk-green));
    border-radius: 2px;
    transition: width var(--nk-transition-medium);
}

.progress-text {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.quiz-content {
    padding-top: 1.25rem;
}

.category-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.category-header h2 {
    color: var(--nk-black);
    margin-bottom: 0.375rem;
}

.category-description {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Questions */
.questions-container {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.question {
    background: var(--nk-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    transition: all var(--nk-transition-fast);
}

.question:hover {
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.question-text {
    font-size: 1.125rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--nk-black);
}

.question-number {
    color: var(--nk-blue);
    font-weight: 600;
    margin-right: 0.375rem;
}

/* Rating Options */
.rating-options {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
}

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

.rating-option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.rating-value {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--nk-off-white);
    border: 2px solid rgba(0, 0, 0, 0.1);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--nk-black);
    transition: all var(--nk-transition-fast);
}

.rating-option:hover .rating-value {
    border-color: var(--nk-blue);
    background: rgba(127, 171, 200, 0.1);
}

.rating-option.selected .rating-value,
.rating-option input:checked + .rating-value {
    background: var(--nk-blue);
    border-color: var(--nk-blue);
    color: var(--nk-white);
    transform: scale(1.05);
}

/* Rating Legend - Hidden (now inline with each question) */
.rating-legend {
    display: none;
}

/* Inline Rating Labels */
.rating-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.6875rem;
    color: rgba(0, 0, 0, 0.45);
    max-width: 280px;
}

.rating-labels span {
    text-align: center;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .rating-labels {
        font-size: 0.5625rem;
        max-width: 240px;
    }

    .rating-value {
        width: 38px;
        height: 38px;
    }
}

/* Quiz Navigation */
.quiz-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.quiz-navigation .btn-primary {
    margin-left: auto;
}

/* ========================================
   Email Capture Screen
   ======================================== */

#email-capture .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.email-content {
    max-width: 480px;
    margin: 0 auto;
}

/* Results Teaser */
.results-teaser {
    text-align: center;
    margin-bottom: 2rem;
}

.teaser-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(166, 190, 164, 0.2), rgba(127, 171, 200, 0.2));
    border-radius: 50%;
}

.teaser-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--nk-green);
}

.email-content h2 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--nk-black);
}

.teaser-subtitle {
    font-size: 1.0625rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
}

.teaser-preview {
    background: var(--nk-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-align: left;
}

.teaser-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: rgba(0, 0, 0, 0.75);
}

.teaser-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.teaser-check {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nk-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

.teaser-check svg {
    width: 12px;
    height: 12px;
    stroke: white;
}

/* Newsletter Signup - Inline Style */
.newsletter-signup {
    max-width: 520px;
    margin: 0 auto;
}

.signup-prompt {
    text-align: center;
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.7);
}

.signup-prompt a {
    color: #4a6741;
    text-decoration: underline;
    font-family: var(--nk-font-serif);
    font-style: italic;
}

.signup-prompt a:hover {
    color: #3d5636;
}

/* Inline Form */
.inline-form {
    display: flex;
    align-items: stretch;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    overflow: hidden;
}

.inline-form input[type="email"] {
    flex: 1;
    padding: 1.125rem 1.5rem;
    font-family: var(--nk-font-sans);
    font-size: 1rem;
    background: transparent;
    border: none;
    color: var(--nk-black);
    min-width: 0;
}

.inline-form input[type="email"]:focus {
    outline: none;
}

.inline-form input[type="email"]::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.btn-inline {
    font-family: var(--nk-font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    font-style: italic;
    padding: 1rem 1.75rem;
    background: var(--nk-blue);
    color: var(--nk-off-white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--nk-transition-fast);
    white-space: nowrap;
    margin: 0.375rem;
    position: relative;
}

.btn-inline:hover {
    background: #5a8aaa;
}

.btn-inline:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Newsletter Checkbox */
.newsletter-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    cursor: pointer;
}

.newsletter-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    background: #4a6741;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--nk-transition-fast);
}

.checkbox-custom svg {
    width: 14px;
    height: 14px;
    stroke: var(--nk-off-white);
    opacity: 1;
    transition: opacity var(--nk-transition-fast);
}

.newsletter-checkbox input[type="checkbox"]:not(:checked) + .checkbox-custom {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.newsletter-checkbox input[type="checkbox"]:not(:checked) + .checkbox-custom svg {
    opacity: 0;
}

.checkbox-label {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.7);
}

.checkbox-label a {
    color: #4a6741;
    text-decoration: underline;
    font-family: var(--nk-font-serif);
    font-style: italic;
}

.checkbox-label a:hover {
    color: #3d5636;
}

/* Subscribe Checkbox */
.subscribe-checkbox {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-top: 1.25rem;
    cursor: pointer;
    font-size: 1.125rem;
    color: var(--nk-black);
    line-height: 1.5;
}

.subscribe-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    background: var(--nk-white);
    border: 2px solid var(--nk-blue);
    border-radius: 5px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--nk-transition-fast);
}

.checkbox-custom::after {
    content: '';
    width: 6px;
    height: 11px;
    border: solid var(--nk-white);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) translate(-1px, -1px);
    opacity: 0;
    transition: opacity var(--nk-transition-fast);
}

.subscribe-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--nk-blue);
}

.subscribe-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    opacity: 1;
}

.subscribe-checkbox a {
    color: var(--nk-blue);
    text-decoration: underline;
}

.subscribe-checkbox a:hover {
    color: #5a8aaa;
}

.subscribe-checkbox em {
    font-family: var(--nk-font-serif);
    font-style: italic;
}

@media (max-width: 520px) {
    .inline-form {
        flex-direction: column;
        background: transparent;
    }

    .inline-form input[type="email"] {
        background: rgba(0, 0, 0, 0.04);
        border-radius: 12px;
        margin-bottom: 0.75rem;
    }

    .btn-inline {
        margin: 0;
        width: 100%;
        border-radius: 12px;
    }
}

/* ========================================
   Results Screen
   ======================================== */

#results .container {
    padding-top: 2rem;
    padding-bottom: 3rem;
    max-width: 840px;
}

.results-section {
    background: var(--nk-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.25rem;
}

.results-section h3 {
    color: var(--nk-black);
    margin-bottom: 1.25rem;
    text-align: center;
    font-size: 1.75rem;
}

/* Results Hero - Score Ring */
.results-hero {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--nk-white);
    border-radius: 24px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.results-hero h2 {
    margin-bottom: 2rem;
    color: var(--nk-black);
    font-size: 2.25rem;
}

.score-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.score-ring-container {
    position: relative;
    width: 220px;
    height: 220px;
}

.score-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-ring-bg {
    fill: none;
    stroke: rgba(0, 0, 0, 0.06);
    stroke-width: 12;
}

.score-ring-progress {
    fill: none;
    stroke: url(#scoreGradient);
    stroke: var(--nk-blue);
    stroke-width: 12;
    stroke-linecap: round;
}

.score-ring-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-number {
    font-family: var(--nk-font-serif);
    font-size: 4.5rem;
    font-weight: 400;
    line-height: 1;
    color: var(--nk-blue);
    display: block;
}

.score-max {
    font-size: 1.125rem;
    color: rgba(0, 0, 0, 0.4);
    display: block;
    margin-top: 0.25rem;
}

.score-info {
    text-align: center;
}

.score-level {
    font-family: var(--nk-font-serif);
    font-size: 2.25rem;
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.score-level.level-exceptional { color: var(--nk-green); }
.score-level.level-strong { color: var(--nk-blue); }
.score-level.level-developing { color: var(--nk-yellow); }
.score-level.level-emerging { color: var(--nk-orange); }
.score-level.level-struggling { color: var(--nk-orange); }

.score-message {
    color: rgba(0, 0, 0, 0.6);
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 520px;
}

/* Radar Chart */
.radar-section {
    padding: 2rem;
}

.radar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.radar-chart {
    width: 100%;
    max-width: 520px;
    height: auto;
}

.radar-grid {
    fill: none;
    stroke: rgba(0, 0, 0, 0.08);
    stroke-width: 1;
}

.radar-axis {
    stroke: rgba(0, 0, 0, 0.1);
    stroke-width: 1;
}

.radar-label {
    font-family: var(--nk-font-sans);
    font-size: 12px;
    fill: rgba(0, 0, 0, 0.6);
}

.radar-data {
    fill: rgba(127, 171, 200, 0.25);
    stroke: var(--nk-blue);
    stroke-width: 2;
    animation: radarFadeIn 0.8s ease-out 0.3s both;
}

.radar-point {
    fill: var(--nk-blue);
    stroke: var(--nk-white);
    stroke-width: 2;
    animation: radarPointPop 0.4s ease-out both;
}

@keyframes radarFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes radarPointPop {
    from {
        opacity: 0;
        r: 0;
    }
    to {
        opacity: 1;
        r: 6;
    }
}

.radar-legend {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.radar-legend-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
}

.radar-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--nk-blue);
    flex-shrink: 0;
}

.radar-legend-label {
    flex: 1;
    color: rgba(0, 0, 0, 0.7);
}

.radar-legend-score {
    color: var(--nk-blue);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Section Icons */
.section-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(166, 190, 164, 0.15), rgba(127, 171, 200, 0.15));
    border-radius: 14px;
}

.section-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--nk-green);
}

.section-icon.development-icon svg {
    stroke: var(--nk-orange);
}

.section-icon.development-icon {
    background: linear-gradient(135deg, rgba(224, 143, 106, 0.15), rgba(198, 165, 91, 0.15));
}

/* Score Badge */
.score-badge {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: rgba(127, 171, 200, 0.1);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--nk-blue);
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Category Breakdown */
.category-bars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.category-bar-item {
    padding: 0;
}

.category-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.category-bar-title {
    font-weight: 500;
    color: var(--nk-black);
}

.category-bar-score {
    color: var(--nk-blue);
    font-weight: 600;
}

.category-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.375rem;
}

.category-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--nk-blue), var(--nk-green));
    border-radius: 4px;
    width: 0;
    transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.category-bar-label {
    font-size: 0.8125rem;
    color: rgba(0, 0, 0, 0.5);
}

/* Strengths & Development Grid */
.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.results-grid .results-section {
    margin-bottom: 0;
}

.strengths ul, .development ul {
    list-style: none;
}

.strengths li, .development li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideInLeft 0.4s ease-out both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.strengths li:last-child, .development li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.strengths strong { color: var(--nk-green); }
.development strong { color: var(--nk-orange); }

/* Reflection Questions */
.reflection-list {
    padding-left: 1.5rem;
}

.reflection-list li {
    padding: 0.5rem 0;
    color: rgba(0, 0, 0, 0.7);
    font-size: 1.0625rem;
    line-height: 1.6;
}

.reflection-list li::marker {
    color: var(--nk-blue);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(127, 171, 200, 0.1), rgba(166, 190, 164, 0.1));
    border: none;
    padding: 2.5rem 2rem;
}

.cta-section h3 {
    color: var(--nk-black);
    font-size: 2rem;
}

.cta-section p {
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 768px) {
    .container {
        padding: 1.25rem 1rem;
    }

    .test-overview {
        gap: 2.5rem;
    }

    .overview-number {
        font-size: 1.875rem;
    }

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

    .score-ring-container {
        width: 180px;
        height: 180px;
    }

    .score-number {
        font-size: 3.5rem;
    }

    .score-level {
        font-size: 1.75rem;
    }

    .results-hero h2 {
        font-size: 1.875rem;
    }

    .results-section h3 {
        font-size: 1.5rem;
    }

    .question {
        padding: 1rem 1.25rem;
    }

    .results-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .intro-logo {
        width: 56px;
    }

    .rating-options {
        gap: 0.375rem;
    }

    .rating-value {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .rating-labels span {
        font-size: 0.5rem;
    }
}

/* ========================================
   Animations
   ======================================== */

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

.screen.active .intro-content,
.screen.active .quiz-content,
.screen.active .email-content,
.screen.active .results-content {
    animation: fadeInUp 0.5s ease-out;
}

.question {
    animation: fadeInUp 0.4s ease-out both;
}

.question:nth-child(1) { animation-delay: 0.03s; }
.question:nth-child(2) { animation-delay: 0.06s; }
.question:nth-child(3) { animation-delay: 0.09s; }
.question:nth-child(4) { animation-delay: 0.12s; }
.question:nth-child(5) { animation-delay: 0.15s; }

.results-section {
    animation: fadeInUp 0.4s ease-out both;
}

.results-section:nth-child(1) { animation-delay: 0.05s; }
.results-section:nth-child(2) { animation-delay: 0.1s; }
.results-section:nth-child(3) { animation-delay: 0.15s; }
.results-section:nth-child(4) { animation-delay: 0.2s; }
.results-section:nth-child(5) { animation-delay: 0.25s; }
