.icp-results-container {
    margin: 0 auto;
}

.icp-results-container .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Score Result Section */
.score-result-section {
    background: linear-gradient(135deg, #066aab 0%, #0891d4 100%);
    background: #5736fd;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.score-result-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 40px 0;
    color: white;
}

.score-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.score-circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 5px solid var(--tier-color, #22c55e);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.score-number {
    font-size: 72px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.score-of {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
}

.score-sublabel {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.score-interpretation {
    max-width: 500px;
    text-align: left;
}

.status-badge {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.status-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0 0 24px 0;
}

/* Score Range Indicator */
.score-range {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.range-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    flex: 1;
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
}

.range-item.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--range-color);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.range-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.range-text {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

/* Results Table Section */
.results-table-wrapper {
    background: #ebf0f7;
    padding: 60px 0;
}

.results-table-wrapper h2 {
    font-size: 42px;
    font-weight: 900;
    color: #000;
    text-align: center;
    margin: 0 0 10px 0;
}

.table-description {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin: 0 0 40px 0;
}

/* Table Styles */
.icp-results-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.icp-results-table thead {
    background: #066aab;
}

.icp-results-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.icp-results-table th:nth-child(2) {
    text-align: center;
    width: 140px;
}

.icp-results-table th:nth-child(3) {
    width: 200px;
}

.icp-results-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s ease;
}

.icp-results-table tbody tr:hover {
    background-color: #f8f9fa;
}

.icp-results-table tbody tr:last-child {
    border-bottom: none;
}

.icp-results-table tbody tr:nth-child(2n) td {
    background: #E8F4FC;
}

.icp-results-table td {
    padding: 20px;
    vertical-align: top;
    font-size: 14px;
    color: #333;
}

/* Recommendation Name Cell */
.rec-name {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rec-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #066aab;
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.rec-name span:last-child {
    font-weight: 500;
    color: #000;
    line-height: 1.4;
}

/* Percentage Cell */
.percentage-cell {
    text-align: center;
    padding: 20px 16px !important;
}

.percentage-value {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.percentage-bar {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
}

.percentage-fill {
    height: 100%;
    background: linear-gradient(90deg, #066aab 0%, #0891d4 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Gap Cell */
.gap-cell {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gap-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    background: #d8effc;
    color: #066aab;
    border-radius: 4px;
    white-space: nowrap;
}

/* Rationale Cell */
.rationale-cell {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

.deliverables {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #e0e0e0;
    font-size: 13px;
    color: #666;
}

.deliverables strong {
    color: #066aab;
}

/* CTA Section */
.icp-middle {
    background: linear-gradient(135deg, #066aab 0%, #0891d4 100%);
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    margin: 60px 0;
    box-shadow: 0 8px 24px rgba(6, 106, 171, 0.2);
    position: relative;
    overflow: hidden;
}

.icp-middle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.icp-middle .text1 {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.icp-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.icp-feature-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.icp-feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.icp-feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s ease;
}

.icp-feature-item:hover .icp-feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: #fff;
}

.icp-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.icp-middle a {
    display: inline-block;
    background: #fff;
    color: #066aab;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 9;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.icp-middle a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Gap Analysis Section */
.gap-analysis-section {
    background: #fff;
    padding: 60px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: #000;
    text-align: center;
    margin: 0 0 40px 0;
}

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

.gap-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.gap-card.has-gap {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.gap-card.no-gap {
    border-color: #22c55e;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.gap-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.gap-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin: 0;
    flex: 1;
}

.gap-severity {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.gap-description {
    font-size: 14px;
    color: #666;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.gap-stats {
    font-size: 13px;
    color: #888;
    font-weight: 500;
}

/* Assessment Responses Section */
.final-result {
    background: #ebf0f7;
    padding: 60px 0;
}

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

.response-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.response-item.is-gap {
    border-left: 4px solid #f59e0b;
}

.response-item.no-gap {
    border-left: 4px solid #22c55e;
}

.response-number {
    width: 40px;
    height: 40px;
    background: #066aab;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.response-content {
    flex: 1;
}

.response-question {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}

.answer-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.answer-badge.yes-answer {
    background: #fef3c7;
    color: #92400e;
}

.answer-badge.no-answer {
    background: #dcfce7;
    color: #166534;
}

/* Feedback Section */
.feedback-section {
    background: #fff;
    border: 2px solid #E8F4FC;
    border-radius: 12px;
    padding: 40px;
    margin: 60px auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
}

.feedback-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: 0 0 30px 0;
}

.feedback-form {
    max-width: 600px;
    margin: 0 auto;
}

.feedback-rating {
    text-align: center;
    margin-bottom: 32px;
}

.feedback-rating label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.icp-star-rating {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 48px;
    line-height: 1;
}

.icp-star-rating .star {
    cursor: pointer;
    color: #e0e0e0;
    transition: all 0.2s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.icp-star-rating .star:hover {
    color: #ffc107;
    transform: scale(1.15);
}

.icp-star-rating .star.active {
    color: #ffc107;
    transform: scale(1.1);
}

.feedback-question {
    margin-bottom: 24px;
    background: #E8F4FC;
    padding: 30px;
    border-radius: 20px;
}

.feedback-question label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    text-align: center;
}

.feedback-question .business-url {
    color: #066aab;
    font-weight: 700;
}

.feedback-options {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.feedback-option {
    flex: 1;
    max-width: 200px;
}

.feedback-option input[type="radio"] {
    display: none;
}

.feedback-option label {
    display: block;
    padding: 16px 24px;
    border: 2px solid #066aab;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.feedback-option input[type="radio"]:checked + label {
    background: #066aab;
    color: #fff;
    border-color: #066aab;
}

.feedback-option label:hover {
    border-color: #055a94;
    background: rgba(6, 106, 171, 0.05);
}

.feedback-textarea {
    margin-top: 32px;
    margin-bottom: 24px;
}

.feedback-textarea label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    text-align: left;
}

.feedback-textarea .optional-label {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    font-style: italic;
}

.feedback-textarea textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    line-height: 1.6;
    color: #333;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s;
    background: #fff;
}

.feedback-textarea textarea:focus {
    outline: none;
    border-color: #066aab;
    box-shadow: 0 0 0 3px rgba(6, 106, 171, 0.1);
}

.feedback-submit {
    text-align: center;
    margin-top: 32px;
}

.feedback-submit button {
    padding: 16px 48px;
    background: #066aab;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.feedback-submit button:hover {
    background: #055a94;
}

.feedback-submit button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.feedback-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
}

.feedback-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.feedback-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.error-message {
    color: #d63637;
    font-size: 14px;
    margin-top: 10px;
    text-align: center;
    font-weight: 500;
    animation: shake 0.3s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Scroll Indicator */
.scroll-down-middle {
    text-align: center;
    margin-top: 40px;
}

.scroll-down-middle > span {
    font-size: 20px;
    display: inline-block;
    margin-bottom: 22px;
    font-weight: 700;
    color: #066aab;
}

.scroll-indicator2 {
    text-align: center;
    cursor: pointer;
}

.scroll-icon {
    display: inline-block;
    width: 50px;
    height: 80px;
    background: url(../images/scroll-down.svg) no-repeat 0;
    background-size: contain;
}

.scroll-text {
    text-transform: uppercase;
    font-size: 14px;
    color: #666;
}
.mht-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 28px 32px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid #e5e7eb !important;
    max-width: 640px;
    margin: 0 auto;
    margin-top: 50px;
}
.mht-feedback-card{
     max-width: 640px;
}
.mht-card-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin: 0 0 20px 0 !important;
}
.mht-cta-card {
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%) !important;
    border: 1px solid #bfdbfe !important;
    /* border-left: 4px solid #6366f1 !important; */
}
.mht-cta-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 10px 0 !important;
}

p.mht-cta-text {
    color: #475569;
}
.mht-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.mht-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 50px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    
}
a.mht-btn.mht-btn-primary {
    background: #5736FD !important;
    color:#fff;
}
.mht-btn-secondary {
    background: #ffffff !important;
    color: #374151 !important;
    border: 1px solid #d1d5db !important;
}
.mht-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 28px 32px !important;
    margin-bottom: 20px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
    border: 1px solid #e5e7eb !important;
    max-width: 640px;
    margin: 0 auto;
    margin-top: 50px;
}
.mht-feedback-card{
     max-width: 640px;
}
.mht-card-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin: 0 0 20px 0 !important;
}
.mht-cta-card {
    background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%) !important;
    border: 1px solid #bfdbfe !important;
    /* border-left: 4px solid #6366f1 !important; */
}
.mht-cta-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    margin: 0 0 10px 0 !important;
}

p.mht-cta-text {
    color: #475569;
}
.mht-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.mht-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 50px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    
}
a.mht-btn.mht-btn-primary {
    background: #5736FD !important;
    color:#fff;
}
.mht-btn-secondary {
    background: #ffffff !important;
    color: #374151 !important;
    border: 1px solid #d1d5db !important;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .gap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .icp-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .score-result-section {
        padding: 40px 20px;
    }
    
    .score-result-section h2 {
        font-size: 28px;
    }
    
    .score-display {
        flex-direction: column;
        gap: 30px;
    }
    
    .score-circle {
        width: 180px;
        height: 180px;
    }
    
    .score-number {
        font-size: 56px;
    }
    
    .score-of {
        font-size: 20px;
    }
    
    .score-interpretation {
        text-align: center;
    }
    
    .score-range {
        justify-content: center;
    }
    
    .results-table-wrapper h2,
    .section-title {
        font-size: 30px;
    }
    
    .gap-grid {
        grid-template-columns: 1fr;
    }
    
    .responses-grid {
        grid-template-columns: 1fr;
    }
    
    .icp-middle {
        padding: 30px 20px;
    }
    
    .icp-middle .text1 {
        font-size: 24px;
    }
    
    .icp-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feedback-section {
        padding: 24px 16px;
    }
    
    .feedback-options {
        flex-direction: column;
    }
    
    .feedback-option {
        max-width: 100%;
    }
    
    .feedback-question > label {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .icp-results-container .container {
        padding: 0 15px;
    }
    
    .score-circle {
        width: 150px;
        height: 150px;
    }
    
    .score-number {
        font-size: 48px;
    }
    
    .score-of {
        font-size: 18px;
    }
    
    .score-range {
        flex-direction: column;
        align-items: center;
    }
    
    .range-item {
        min-width: 200px;
    }
    
    .icp-results-table th,
    .icp-results-table td {
        padding: 12px;
        font-size: 13px;
    }
    
    .rec-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .gap-badge {
        font-size: 11px;
        padding: 4px 8px;
    }
    .mht-cta-card {
        text-align: center;
    }
    .mht-cta-buttons {
        justify-content: center;
    }
}
