/* Leadership Gap Assessment Specific Styles */

.assessment-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0 2rem 0;
}

.assessment-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Intro Screen */
.intro-screen h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.intro-screen .subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
}

.principles-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 5px solid var(--gold-accent);
}

.principles-banner h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.principles-banner p {
    margin: 1rem 0;
    line-height: 1.6;
}

.principles-banner strong {
    color: var(--gold-accent);
}

.assessment-categories {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.assessment-categories h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.category-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.category-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.category-dot.maxwell {
    background: var(--primary-blue);
}

.category-dot.cole {
    background: var(--gold-accent);
}

.category-item-content h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.category-item-content p {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.cole-banner {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border-left: 5px solid var(--gold-accent);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.cole-banner h3 {
    font-size: 1.3rem;
    color: #92400e;
    margin-bottom: 0.75rem;
}

.cole-banner p {
    color: #78350f;
    line-height: 1.6;
}

.begin-button {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
}

.begin-button:hover {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-magenta) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Assessment Screen */
.progress-header {
    margin-bottom: 2rem;
}

.progress-header h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.progress-count {
    font-size: 0.95rem;
    color: #666;
}

.progress-bar-container {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    transition: width 0.3s ease;
}

.questions-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.category-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.category-section.cole-category {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.category-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.category-header h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.category-badge {
    background: var(--gold-accent);
    color: #78350f;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.category-description {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.question-item {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.question-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.question-text {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.question-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.rating-label {
    font-size: 0.85rem;
    color: #999;
    min-width: 70px;
}

.rating-buttons {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    justify-content: center;
}

.rating-button {
    width: 50px;
    height: 50px;
    border: 2px solid #e0e0e0;
    background: #f5f5f5;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-button:hover {
    border-color: var(--primary-blue);
    background: #e3f2fd;
}

.rating-button.selected {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.rating-button.selected.cole {
    background: var(--gold-accent);
    border-color: var(--gold-accent);
    color: #78350f;
}

.submit-assessment-button {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, var(--primary-blue) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.submit-assessment-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #059669 0%, #0284c7 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.submit-assessment-button:disabled {
    background: #d1d5db;
    color: #9ca3af;
    cursor: not-allowed;
}

/* Results Screen */
.results-header {
    text-align: center;
    margin-bottom: 3rem;
}

.results-header h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.results-header .subtitle {
    color: #666;
    font-size: 1.1rem;
}

.overall-score-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 50%, var(--gold-accent) 100%);
    color: white;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.overall-score-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.score-number {
    font-size: 5rem;
    font-weight: 700;
    margin: 1rem 0;
}

.score-message {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.chart-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.chart-card h2 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.chart-container {
    position: relative;
    height: 400px;
    width: 100%;
}

.action-plan-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.action-plan-section h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.action-plan-intro {
    color: #666;
    margin-bottom: 2rem;
}

.priority-item {
    border-left: 5px solid #ef4444;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.priority-item.cole {
    border-left-color: var(--gold-accent);
}

.priority-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.priority-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.priority-gap {
    font-weight: 700;
    color: #ef4444;
}

.priority-gap.cole {
    color: #d97706;
}

.priority-actions {
    background: #f9fafb;
    border-radius: 8px;
    padding: 1.5rem;
}

.priority-actions p {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.priority-actions ul {
    list-style: none;
    padding: 0;
}

.priority-actions li {
    color: #4b5563;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Implementation Notes */
.implementation-note {
    display: flex;
    gap: 1rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.implementation-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.implementation-content h4 {
    color: #92400e;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.implementation-content p {
    color: #78350f;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.success-stat {
    color: #065f46;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Inline Consultation CTA */
.consultation-cta-inline {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    padding: 1.25rem;
    margin-top: 1.5rem;
    text-align: center;
}

.consultation-cta-inline p {
    color: #1e40af;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.cta-button-small {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 153, 255, 0.3);
}

.cta-button-small:hover {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-magenta) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* Implementation Gap Warning */
.implementation-gap-warning {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 3px solid #ef4444;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    margin-top: 3rem;
    text-align: center;
}

.implementation-gap-warning h3 {
    font-size: 2rem;
    color: #991b1b;
    margin-bottom: 2rem;
}

.gap-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gap-stat {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.gap-stat p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

.gap-message {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    border-left: 4px solid #dc2626;
}

.gap-cta-center {
    margin-top: 1.5rem;
}

.gap-cta-center .cta-button {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.cole-challenge {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border-left: 5px solid var(--gold-accent);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.cole-challenge h3 {
    font-size: 1.3rem;
    color: #92400e;
    margin-bottom: 1rem;
}

.cole-challenge p {
    color: #78350f;
    margin-bottom: 1rem;
    font-style: italic;
}

.cole-challenge ol {
    color: #78350f;
    padding-left: 1.5rem;
}

.cole-challenge li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.leadership-sprint {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 5px solid var(--primary-blue);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.leadership-sprint h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.sprint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.sprint-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sprint-item.maxwell h4 {
    color: var(--primary-blue);
}

.sprint-item.groeschel h4 {
    color: var(--primary-purple);
}

.sprint-item.cole h4 {
    color: #d97706;
}

.sprint-item p {
    font-size: 0.95rem;
    color: #4b5563;
}

.restart-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.restart-button:hover {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-magenta) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.results-center {
    text-align: center;
    margin-top: 2rem;
}

/* Email Capture Modal */
.email-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.email-modal-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.email-modal-content h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.email-modal-content p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-form input {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.email-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.email-form button {
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.email-form button:hover {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-magenta) 100%);
    transform: translateY(-2px);
}

.skip-link {
    text-align: center;
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.skip-link a {
    color: var(--primary-blue);
    text-decoration: underline;
    cursor: pointer;
}

/* Results Email Capture */
.results-email-capture {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--primary-blue);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.1);
}

.results-email-header {
    text-align: center;
    margin-bottom: 2rem;
}

.results-email-header h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.results-email-header p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.results-email-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.email-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.email-benefit h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.email-benefit p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.results-email-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.results-email-form input {
    padding: 1rem;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.results-email-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 153, 255, 0.1);
}

.results-email-form .cta-button {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.results-email-form .privacy-note {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

.results-email-alternate {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #cbd5e1;
}

.results-email-alternate p {
    color: #64748b;
    font-size: 0.95rem;
}

.results-email-alternate a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
}

.success-message {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
}

.success-message .success-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.success-message h3 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: #475569;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .intro-screen h1 {
        font-size: 2rem;
    }

    .assessment-categories,
    .principles-banner,
    .cole-banner {
        padding: 1.5rem;
    }

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

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

    .chart-container {
        height: 300px;
    }

    .rating-buttons {
        gap: 0.25rem;
    }

    .rating-button {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .rating-label {
        font-size: 0.75rem;
        min-width: 60px;
    }

    .overall-score-card {
        padding: 2rem;
    }

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

    .email-modal-content {
        padding: 2rem;
    }

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

    .results-email-capture {
        padding: 2rem 1.5rem;
    }

    .results-email-header h2 {
        font-size: 1.5rem;
    }

    .results-email-header p {
        font-size: 1rem;
    }

    .results-email-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .email-benefit {
        padding: 1rem;
    }

    .success-message h3 {
        font-size: 1.5rem;
    }

    .success-message p {
        font-size: 1rem;
    }

    .implementation-note {
        flex-direction: column;
        padding: 1rem;
    }

    .implementation-icon {
        font-size: 1.5rem;
    }

    .implementation-content h4 {
        font-size: 0.95rem;
    }

    .implementation-content p {
        font-size: 0.9rem;
    }

    .consultation-cta-inline {
        padding: 1rem;
    }

    .consultation-cta-inline p {
        font-size: 0.9rem;
    }

    .cta-button-small {
        font-size: 0.9rem;
        padding: 0.65rem 1.25rem;
    }

    .implementation-gap-warning {
        padding: 2rem 1.5rem;
    }

    .implementation-gap-warning h3 {
        font-size: 1.5rem;
    }

    .gap-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .gap-stat {
        padding: 1rem;
    }

    .gap-message {
        font-size: 1rem;
        padding: 1rem;
    }

    .gap-cta-center .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* New Simplified Results Styles */
.results-summary {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.results-summary h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.results-intro {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.gap-areas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gap-area-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ef4444;
}

.gap-rank {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ef4444;
    min-width: 60px;
}

.gap-info {
    flex: 1;
}

.gap-info h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.gap-score {
    display: flex;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.current-score {
    color: #666;
}

.gap-amount {
    color: #ef4444;
    font-weight: 600;
}

.interpretation-required {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 3px solid #f59e0b;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.interpretation-required h2 {
    font-size: 2rem;
    color: #92400e;
    margin-bottom: 1.5rem;
}

.interpretation-required p {
    color: #78350f;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.interpretation-required ul {
    text-align: left;
    max-width: 600px;
    margin: 1.5rem auto;
    list-style: none;
    padding: 0;
}

.interpretation-required li {
    color: #78350f;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.interpretation-note {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
    margin: 1.5rem 0;
    text-align: left;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: white;
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--accent-magenta) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.cta-button.secondary {
    background: white;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.cta-button.secondary:hover {
    background: var(--primary-blue);
    color: white;
}

.next-steps {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-item h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-item p {
    color: #666;
    font-size: 0.95rem;
}

.testimonial-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-left: 5px solid var(--primary-blue);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.testimonial-section h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.testimonial-section blockquote {
    margin: 0;
    padding: 0;
}

.testimonial-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-section cite {
    font-style: normal;
    color: #64748b;
    font-weight: 600;
}

.privacy-note {
    text-align: center;
    font-size: 0.85rem;
    color: #666;
    margin-top: 1rem;
    font-style: italic;
}

/* Responsive adjustments for new styles */
@media (max-width: 768px) {
    .gap-area-item {
        flex-direction: column;
        text-align: center;
    }
    
    .gap-rank {
        font-size: 2rem;
    }
    
    .gap-score {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Email Confirmation Modal */
.email-confirmation-modal {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.confirmation-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.email-confirmation-modal.success .confirmation-content {
    border-top: 5px solid #10b981;
}

.email-confirmation-modal.warning .confirmation-content {
    border-top: 5px solid #f59e0b;
}

.confirmation-content h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.email-confirmation-modal.success h2 {
    color: #10b981;
}

.email-confirmation-modal.warning h2 {
    color: #f59e0b;
}

.confirmation-main {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.email-display {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.confirmation-details {
    margin: 2rem 0;
    text-align: left;
}

.confirmation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    background: #f8fef8;
    border-radius: 8px;
    border-left: 3px solid #10b981;
}

.confirmation-item.warning {
    background: #fffbf0;
    border-left-color: #f59e0b;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.warning-icon {
    width: 24px;
    height: 24px;
    background: #f59e0b;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.next-step {
    font-size: 1rem;
    color: #666;
    margin: 1.5rem 0;
    line-height: 1.6;
}

.view-results-button {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 1.5rem 0 1rem 0;
    box-shadow: 0 4px 15px rgba(70, 130, 180, 0.3);
}

.view-results-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(70, 130, 180, 0.4);
}

.auto-redirect {
    font-size: 0.9rem;
    color: #999;
    margin-top: 1rem;
}

#countdown {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Responsive adjustments for confirmation modal */
@media (max-width: 768px) {
    .confirmation-content {
        padding: 2rem 1.5rem;
    }

    .confirmation-content h2 {
        font-size: 1.5rem;
    }

    .email-display {
        font-size: 1rem;
    }

    .view-results-button {
        width: 100%;
        padding: 1rem;
    }
}
