/* specific styles for ai readiness assessment */

.ai-assessment-hero {
    min-height: 80vh;
}

.max-w-800 {
    max-width: 800px;
}

.text-darker {
    color: var(--text-tertiary);
    font-size: 14px;
}

.disclaimer-text {
    color: var(--text-tertiary);
    font-size: 12px;
    font-style: italic;
    opacity: 0.7;
}

/* Assessment Section UI */
.assessment-bg {
    background-color: var(--bg-primary);
    position: relative;
}

.padding-y-large {
    padding-top: 60px;
    padding-bottom: 100px;
}

/* Sticky Progress Tracker */
.sticky-progress-container {
    position: sticky;
    top: var(--nav-height);
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
    z-index: 100;
}

.progress-bar-wrapper {
    height: 6px;
    background-color: var(--bg-secondary);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar-fill {
    height: 100%;
    background: var(--accent-gradient);
    width: 0%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

#progress-section-name {
    color: var(--text-primary);
}

/* Question Cards */
.question-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.question-card:hover {
    border-color: var(--border-bright);
}

.question-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 24px;
}

/* Rating Scale */
.rating-scale {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.rating-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.rating-radio {
    display: none;
}

.rating-box {
    width: 100%;
    padding: 16px 8px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
}

.rating-number {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    display: block;
}

.rating-label {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.2;
}

.rating-option:hover .rating-box {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.rating-radio:checked + .rating-box {
    background: var(--glow-teal);
    border-color: #00FFAA;
    box-shadow: 0 0 15px rgba(0, 255, 170, 0.1);
}

.rating-radio:checked + .rating-box .rating-number,
.rating-radio:checked + .rating-box .rating-label {
    color: #00FFAA;
}

/* Lead Capture Form */
.lead-form-group {
    margin-bottom: 20px;
}

.lead-form-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.lead-form-input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 16px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 16px;
    transition: var(--transition-smooth);
}

.lead-form-input:focus {
    outline: none;
    border-color: #00FFAA;
    background-color: rgba(0, 255, 170, 0.02);
}

/* Section Description */
.section-intro-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Assessment Controls */
.assessment-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
}

/* Results Section */
.results-header {
    text-align: center;
    margin-bottom: 48px;
}

.results-score-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
}

.results-score-circle.score-low {
    border-color: #FF6B35;
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.1);
}

.results-score-circle.score-medium {
    border-color: #FFD166;
    box-shadow: 0 0 30px rgba(255, 209, 102, 0.1);
}

.results-score-circle.score-high {
    border-color: #00FFAA;
    box-shadow: 0 0 30px rgba(0, 255, 170, 0.1);
}

.score-number {
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    color: var(--text-primary);
}

.score-total {
    font-size: 16px;
    color: var(--text-tertiary);
}

.maturity-band-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.maturity-band-score-low { color: #FF6B35; }
.maturity-band-score-medium { color: #FFD166; }
.maturity-band-score-high { color: #00FFAA; }

.maturity-band-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.result-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 32px;
}

.result-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 16px;
}

.insight-list {
    list-style: none;
    padding: 0;
}

.insight-item {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 15px;
}

.insight-item::before {
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: 600;
}

.strengths-list .insight-item::before {
    content: "✓";
    color: #00FFAA;
}

.gaps-list .insight-item::before {
    content: "—";
    color: #FF6B35;
}

.dimension-bar-container {
    margin-bottom: 16px;
}

.dimension-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
}

.dimension-name {
    color: var(--text-primary);
    font-weight: 500;
}

.dimension-score {
    color: var(--text-secondary);
}

.dimension-bar-bg {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.dimension-bar-fill {
    height: 100%;
    border-radius: 3px;
}

.recommendations-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border: 1px solid var(--border-light);
    padding: 32px;
    border-radius: 12px;
}

.error-message {
    color: #FF6B35;
    font-size: 14px;
    margin-top: 16px;
    display: none;
}

/* Animations */
.slide-in-right {
    animation: slideInRight 0.4s forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .rating-scale {
        flex-direction: column;
        gap: 12px;
    }
    
    .rating-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
    }
    
    .rating-number {
        margin-bottom: 0;
    }
    
    .rating-label {
        font-size: 14px;
        text-align: right;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .assessment-controls {
        flex-direction: column-reverse;
        gap: 16px;
    }
    
    .assessment-controls .btn {
        width: 100%;
    }
}
