/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    color: #2d3748;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== NAVIGATION ===== */
.top-nav {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #5568d3;
    text-decoration: underline;
}

/* ===== MAIN CONTAINER ===== */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    flex: 1;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.logo-img {
    max-width: 80px;
    height: auto;
}

/* ===== LANDING PAGE ===== */
.landing-hero {
    text-align: center;
    margin-bottom: 80px;
}

.landing-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.6;
}

.quiz-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: #4a5568;
}

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

.cta-button {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(40, 167, 69, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.4);
}

.quiz-note {
    margin-top: 24px;
    color: #718096;
    font-size: 1rem;
}

/* Landing Content */
.landing-content {
    margin-bottom: 80px;
}

.landing-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
    text-align: center;
    margin-bottom: 48px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefit-item {
    background: #f7fafc;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.benefit-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #4a5568;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 40px;
    background: #f7fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.cta-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 24px;
}

.cta-subtext {
    margin-top: 16px;
    color: #718096;
    font-size: 1rem;
}

/* ===== QUIZ INTERFACE ===== */
.quiz-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Progress Bar */
.progress-section {
    margin-bottom: 40px;
}

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

.progress-fill {
    height: 100%;
    background: #667eea;
    transition: width 0.3s ease;
}

.progress-text {
    text-align: center;
    color: #718096;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Question Card */
.question-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.question-header {
    margin-bottom: 32px;
}

.track-label {
    display: inline-block;
    padding: 6px 12px;
    background: #eef2ff;
    color: #667eea;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.question-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.4;
}

/* Answer Options */
.answer-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.answer-option {
    padding: 20px 24px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 1.125rem;
    color: #2d3748;
    text-align: left;
}

.answer-option:hover {
    border-color: #667eea;
    background: #f7fafc;
}

.answer-option.selected {
    border-color: #667eea;
    background: #eef2ff;
    color: #667eea;
    font-weight: 500;
}

/* Quiz Navigation */
.quiz-navigation {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.nav-button {
    padding: 14px 32px;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.nav-button:hover:not(:disabled) {
    background: #5568d3;
}

.nav-button:disabled {
    background: #cbd5e0;
    cursor: not-allowed;
}

.nav-button.secondary {
    background: #ffffff;
    color: #667eea;
    border: 2px solid #667eea;
}

.nav-button.secondary:hover:not(:disabled) {
    background: #f7fafc;
}

/* ===== RESULTS PAGE ===== */
.results-container {
    max-width: 800px;
    margin: 0 auto;
}

.results-header {
    text-align: center;
    margin-bottom: 60px;
}

.results-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.results-header p {
    font-size: 1.25rem;
    color: #4a5568;
}

/* Strengths Display */
.strengths-section {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 60px;
}

.strengths-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 32px;
    text-align: center;
}

.strength-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}

.strength-item:last-child {
    margin-bottom: 0;
}

.strength-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

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

.strength-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
}

.strength-level {
    color: #667eea;
    font-weight: 600;
}

.strength-description {
    color: #4a5568;
    line-height: 1.6;
}

/* Email Gate Section */
.email-gate-section {
    background: #ffffff;
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 48px 40px;
    text-align: center;
}

.email-gate-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.email-gate-section p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 32px;
}

.email-benefits {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 32px;
}

.email-benefits ul {
    list-style: none;
    padding: 0;
}

.email-benefits li {
    padding: 8px 0;
    color: #2d3748;
    font-size: 1.125rem;
    position: relative;
    padding-left: 32px;
}

.email-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.25rem;
}

/* Email Form */
.email-form {
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    width: 100%;
    padding: 16px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #2d3748;
    font-size: 1.125rem;
    margin-bottom: 16px;
}

.email-input:focus {
    outline: none;
    border-color: #667eea;
}

.email-input::placeholder {
    color: #a0aec0;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.submit-button:hover {
    background: #218838;
}

.privacy-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: #718096;
}

/* ===== FOOTER ===== */
.main-footer {
    margin-top: auto;
    padding: 40px 20px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    background: #f7fafc;
}

.footer-content p {
    color: #718096;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-link {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #5568d3;
    text-decoration: underline;
}

.footer-copyright {
    color: #a0aec0;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    .landing-hero h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.125rem;
    }

    .quiz-features {
        gap: 24px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        padding: 24px;
    }

    .cta-section {
        padding: 40px 24px;
    }

    .question-card {
        padding: 28px 20px;
    }

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

    .answer-option {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .quiz-navigation {
        flex-direction: column-reverse;
    }

    .nav-button {
        width: 100%;
    }

    .results-header h1 {
        font-size: 2rem;
    }

    .strengths-section {
        padding: 28px 20px;
    }

    .email-gate-section {
        padding: 32px 20px;
    }

    .email-benefits li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .landing-hero h1 {
        font-size: 1.75rem;
    }

    .cta-button {
        padding: 14px 36px;
        font-size: 1.125rem;
    }

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

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

/* ===== FULL REPORT PAGE ===== */
.full-report-container {
    max-width: 900px;
    margin: 0 auto;
}

.report-header {
    text-align: center;
    margin-bottom: 60px;
}

.report-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.report-intro {
    font-size: 1.25rem;
    color: #4a5568;
}

/* Track Report Cards */
.track-report-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.track-report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.track-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.track-emoji {
    font-size: 2rem;
}

.track-name {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

.track-level-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.track-level-badge.advanced {
    background: #c6f6d5;
    color: #22543d;
}

.track-level-badge.intermediate {
    background: #bee3f8;
    color: #2c5282;
}

.track-level-badge.developing {
    background: #fef5e7;
    color: #744210;
}

.track-level-badge.beginner {
    background: #fed7e2;
    color: #702459;
}

.track-level-badge.just-starting {
    background: #e9d8fd;
    color: #44337a;
}

/* Score Bar */
.track-score-bar {
    position: relative;
    height: 32px;
    background: #f7fafc;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
}

.score-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: width 0.6s ease;
    border-radius: 16px;
}

.score-text {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-weight: 600;
    color: #2d3748;
    font-size: 0.875rem;
}

/* Track Analysis */
.track-analysis {
    margin-bottom: 24px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 8px;
}

.track-description {
    font-size: 1.125rem;
    color: #2d3748;
    margin-bottom: 12px;
    font-weight: 500;
}

.track-encouragement {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

/* Module Recommendations */
.module-recommendations {
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.module-recommendations h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.module-recommendations p {
    color: #4a5568;
    margin-bottom: 12px;
}

.module-recommendations ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-recommendations li {
    padding: 8px 0;
    color: #2d3748;
    line-height: 1.6;
}

.module-recommendations strong {
    color: #667eea;
    font-weight: 600;
}

/* Action Plan Section */
.action-plan-section {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 40px;
    margin: 60px 0;
}

.action-plan-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 32px;
    text-align: center;
}

.priority-item {
    background: #ffffff;
    border-left: 4px solid #667eea;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}

.priority-item:last-of-type {
    margin-bottom: 32px;
}

.priority-label {
    display: inline-block;
    padding: 4px 12px;
    background: #667eea;
    color: white;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.priority-item.priority-1 .priority-label {
    background: #e53e3e;
}

.priority-item.priority-2 .priority-label {
    background: #ed8936;
}

.priority-item.priority-3 .priority-label {
    background: #38a169;
}

.priority-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.priority-item p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.action-plan-summary {
    background: #eef2ff;
    border: 1px solid #c7d2fe;
    border-radius: 8px;
    padding: 24px;
    margin-top: 32px;
}

.action-plan-summary h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.action-plan-summary p {
    color: #2d3748;
    line-height: 1.6;
    margin: 0;
}

/* Launch CTA Section */
.launch-cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    margin: 60px 0;
}

.launch-cta-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.launch-cta-section p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
}

.launch-cta-section .cta-button {
    background: white;
    color: #667eea;
}

.launch-cta-section .cta-button:hover {
    background: #f7fafc;
    color: #5568d3;
}

.launch-cta-section .cta-subtext {
    color: rgba(255, 255, 255, 0.8);
}

/* Resources Section */
.resources-section {
    margin: 60px 0;
}

.resources-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    text-align: center;
    margin-bottom: 32px;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.resource-item {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 32px;
}

.resource-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.resource-item p {
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.6;
}

.resource-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.resource-link:hover {
    color: #5568d3;
    text-decoration: underline;
}

/* No Results Message */
.no-results-message {
    text-align: center;
    padding: 60px 40px;
    background: #f7fafc;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
}

.no-results-message h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 16px;
}

.no-results-message p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 32px;
}

/* ===== FULL REPORT MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .report-header h1 {
        font-size: 2rem;
    }

    .track-report-card {
        padding: 24px;
    }

    .track-report-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .track-name {
        font-size: 1.5rem;
    }

    .action-plan-section {
        padding: 28px 20px;
    }

    .launch-cta-section {
        padding: 40px 24px;
    }

    .launch-cta-section h2 {
        font-size: 1.75rem;
    }

    .resource-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .resource-item {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .report-header h1 {
        font-size: 1.75rem;
    }

    .track-emoji {
        font-size: 1.5rem;
    }

    .track-name {
        font-size: 1.25rem;
    }

    .track-report-card {
        padding: 20px;
    }

    .module-recommendations {
        padding: 16px;
    }
}
