/* ========================================
   AI Assessment Page Styles
   ======================================== */

.ai-assessment-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.7;
    color: #333;
    font-size: 26px;
}

/* === Hero Section === */
.assessment-hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.9) 0%, rgba(44, 62, 80, 0.85) 100%),
                url('/wp-content/uploads/2026/02/mtc-hero-ai-assessment.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(253, 184, 19, 0.2);
    color: #FDB813;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(253, 184, 19, 0.3);
}

.hero-title {
    font-size: 5.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 2rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-benefits {
    max-width: 700px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 14px 0;
    font-size: 2rem;
}

.benefit-icon {
    color: #FDB813;
    font-size: 2rem;
    font-weight: 700;
}

.hero-guarantee {
    margin-bottom: 2rem;
}

.hero-guarantee p {
    font-size: 2rem;
    opacity: 0.8;
}

.cta-time {
    margin-top: 1rem;
    font-size: 2rem;
    opacity: 0.7;
}

/* === What You'll Get Section === */
.what-you-get-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.deliverable-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.deliverable-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.deliverable-icon {
    font-size: 5.2rem;
    margin-bottom: 1rem;
}

.deliverable-card h3 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
}

.deliverable-card > p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.deliverable-sample {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 1rem;
}

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

.score-bar {
    width: 100%;
    height: 30px;
    background: #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, #FDB813 0%, #ff9800 100%);
    transition: width 1s ease;
}

.score-label {
    color: #666;
    font-size: 2rem;
}

.opportunity-example {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opportunity-example li {
    padding: 8px 0;
    color: #333;
    font-size: 2rem;
}

.roi-example {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

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

.roi-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FDB813;
    margin-bottom: 0.25rem;
}

.roi-label {
    display: block;
    font-size: 2rem;
    color: #666;
}

.roadmap-example {
    font-size: 2rem;
    color: #555;
    line-height: 1.8;
}

/* === How Assessment Works === */
.how-assessment-works-section {
    padding: 100px 0;
    background: #fff;
}

.assessment-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

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

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
    color: #FDB813;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a2332;
}

.step-time {
    color: #FDB813;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: #666;
    line-height: 1.7;
}

/* === Assessment Form === */
.assessment-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.form-header p {
    font-size: 2rem;
    color: #666;
}

.assessment-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 2rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group select {
    font-size: 1.05rem;
    color: #333;
    background-color: #fff;
}

.form-group select option {
    color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FDB813;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checkbox-label:hover {
    background: #e9ecef;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

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

.btn-submit-large {
    background: linear-gradient(135deg, #FDB813 0%, #ff9800 100%);
    color: #1a2332;
    padding: 18px 50px;
    font-size: 2rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-submit-large:hover {
    background: linear-gradient(135deg, #ffc933 0%, #ffa726 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(253, 184, 19, 0.5);
}

.form-privacy {
    margin-top: 1rem;
    font-size: 2rem;
    color: #999;
}

.form-success-message {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5.2rem;
    font-weight: 700;
    margin: 0 auto 2rem;
}

.form-success-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.form-success-message p {
    font-size: 2rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* === Social Proof === */
.social-proof-section {
    padding: 100px 0;
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 35px 30px;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.quote-icon {
    font-size: 4rem;
    color: #FDB813;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 2rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author-name {
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 2rem;
    color: #999;
}

/* === FAQ === */
.faq-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    opacity: 0;
    transform: translateY(30px);
}

.faq-item.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

.faq-item h4 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #1a2332;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

/* === Responsive === */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
    
    .assessment-timeline {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .assessment-form-container {
        padding: 30px 20px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* === Animations === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}
