/* AI Readiness Checklist Styles */

:root {
    --color-impact: #004a9f;
    --color-plus: #00a0a8;
    --color-white: #ffffff;
    --color-dark: #1a1a1a;
    --color-gray: #666666;
    --color-light-gray: #f5f5f5;
    --color-border: #e0e0e0;
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-danger: #dc3545;
    --color-info: #17a2b8;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.checklist-hero {
    background: linear-gradient(135deg, #004a9f 0%, #00a0a8 100%);
    color: var(--color-white);
    padding: 4rem 0;
    text-align: center;
}

.checklist-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.checklist-hero .subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.checklist-hero .byline {
    font-size: 1rem;
    opacity: 0.85;
}

/* Instructions Section */
.instructions-section {
    background: var(--color-white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-border);
}

.instructions-section h2 {
    color: var(--color-impact);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.instructions-section > .container > p {
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    font-size: 1.1rem;
}

.rating-guide {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
}

.rating-item .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
}

.rating-item .icon.fully {
    background: var(--color-success);
    color: var(--color-white);
}

.rating-item .icon.partial {
    background: var(--color-warning);
    color: var(--color-dark);
}

.rating-item .icon.not-addressed {
    background: var(--color-danger);
    color: var(--color-white);
}

.total-score-info {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--color-gray);
}

/* Modern Score Dashboard - Compact & Clean */
.score-dashboard-modern {
    background: linear-gradient(135deg, #003d7a 0%, #008891 100%);
    color: var(--color-white);
    padding: 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-top: 1rem;
}

.progress-bar-wrapper {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.progress-bar-gradient {
    height: 100%;
    background: linear-gradient(90deg, #003d7a 0%, #008891 50%, #00b8a3 100%);
    width: 0%;
    transition: width 0.4s ease;
    box-shadow: 0 0 10px rgba(0, 136, 145, 0.6);
}

.score-row-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
}

.section-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.section-indicator i {
    font-size: 1.1rem;
    opacity: 0.9;
}

.score-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: flex-start;
}

.score-text {
    font-size: 0.95rem;
}

.score-text strong {
    font-size: 1.4rem;
    color: var(--color-white);
}

.level-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.progress-info {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    white-space: nowrap;
}

.progress-info span {
    color: var(--color-white);
    font-weight: 700;
}

.dashboard-toggle-mini {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--color-white);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dashboard-toggle-mini:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.score-details-panel {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.3s ease;
}

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

.section-scores-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.section-score-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.section-score-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.section-score-badge .section-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.section-score-badge .section-points {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
}

.section-score-badge .section-progress {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

/* Old dashboard backwards compatibility */
.score-dashboard {
    display: none;
}

.total-score {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.score-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.score-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-white);
}

.score-max {
    font-size: 1.5rem;
    opacity: 0.8;
}

.readiness-level {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
}

.section-scores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.section-score-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
}

.section-score-item .section-name {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.section-score-item .section-points {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Checklist Sections */
.checklist-section {
    background: var(--color-white);
    padding: 3rem 0;
    border-bottom: 1px solid var(--color-border);
}

.checklist-section h2 {
    color: var(--color-impact);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #004a9f 0%, #00a0a8 100%);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Section-level Quick Fill Buttons */
.section-select-all {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
    border: 1px solid rgba(0, 74, 159, 0.12);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.select-all-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-impact);
    font-size: 0.875rem;
    white-space: nowrap;
}

.select-all-label i {
    font-size: 1rem;
    opacity: 0.8;
}

.select-all-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.section-fill-btn {
    padding: 0.5rem 0.875rem;
    border: 1.5px solid rgba(0, 74, 159, 0.2);
    background: white;
    border-radius: 6px;
    font-size: 0.825rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    transition: all 0.2s ease;
    color: var(--color-dark);
}

.section-fill-btn .btn-icon {
    font-size: 1rem;
    opacity: 0.8;
}

.section-fill-btn:hover {
    border-color: var(--color-impact);
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 74, 159, 0.15);
}

.section-fill-btn.active-flash {
    background: linear-gradient(135deg, var(--color-impact) 0%, var(--color-plus) 100%);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
}

.section-fill-btn.active-flash .btn-icon {
    opacity: 1;
}

.checklist-section h3 {
    color: var(--color-plus);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.subsection-desc {
    color: var(--color-gray);
    margin-bottom: 1rem;
    font-style: italic;
}

/* Checklist Items */
.checklist-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem;
    background: var(--color-light-gray);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: #e8f4f8;
    border-color: var(--color-plus);
}

.checklist-item.selected {
    border-color: var(--color-impact);
    box-shadow: 0 2px 8px rgba(0, 74, 159, 0.15);
}

.item-text {
    flex: 1;
    font-size: 1rem;
    color: var(--color-dark);
    line-height: 1.5;
}

/* Modern Slider-Based Rating System */
.checklist-item-modern {
    background: var(--color-white);
    padding: 1.75rem;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.checklist-item-modern:hover {
    border-color: var(--color-plus);
    box-shadow: 0 4px 12px rgba(0, 136, 145, 0.1);
}

.checklist-item-modern.answered {
    border-color: var(--color-impact);
    background: linear-gradient(135deg, #f0f8ff 0%, #e8f4f8 100%);
}

.item-question {
    font-size: 1.05rem;
    color: var(--color-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.rating-slider-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem 0;
    position: relative;
}

.rating-slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1rem;
    right: -1rem;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.rating-slider {
    width: 100%;
    height: 12px;
    -webkit-appearance: none;
    appearance: none;
    background: linear-gradient(to right, #003d7a 0%, #008891 50%, #00b8a3 100%);
    border-radius: 12px;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.rating-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-white) 0%, #f5f5f5 100%);
    border: 4px solid var(--color-impact);
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 4px 16px rgba(0, 61, 122, 0.4);
    transition: all 0.2s ease;
}

.rating-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 61, 122, 0.5);
    border-color: var(--color-plus);
}

.rating-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 136, 145, 0.6);
    border-color: var(--color-plus);
}

.rating-slider::-moz-range-thumb {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-white) 0%, #f5f5f5 100%);
    border: 4px solid var(--color-impact);
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 4px 16px rgba(0, 61, 122, 0.4);
    transition: all 0.2s ease;
}

.rating-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 61, 122, 0.5);
    border-color: var(--color-plus);
}

.rating-slider::-moz-range-thumb:active {
    cursor: grabbing;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 136, 145, 0.6);
    border-color: var(--color-plus);
}

/* Make track clickable on Firefox */
.rating-slider::-moz-range-track {
    background: transparent;
    border: none;
    height: 12px;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 0.25rem;
}

.slider-label {
    font-size: 0.85rem;
    color: var(--color-gray);
    font-weight: 500;
    text-align: center;
    flex: 1;
}

.slider-label:first-child {
    text-align: left;
}

.slider-label:last-child {
    text-align: right;
}

.slider-value-display {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-impact);
    padding: 0.75rem;
    background: rgba(0, 136, 145, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.slider-value-display.value-0 {
    color: #d32f2f;
    background: rgba(211, 47, 47, 0.08);
}

.slider-value-display.value-1 {
    color: #f57c00;
    background: rgba(245, 124, 0, 0.08);
}

.slider-value-display.value-2 {
    color: #388e3c;
    background: rgba(56, 142, 60, 0.08);
}

/* Compact Button System with Labels */
.item-controls-modern {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
}

.rating-btn-modern {
    flex: 1;
    min-width: 70px;
    padding: 0.5rem 0.4rem;
    border: 2px solid #e0e0e0;
    background: var(--color-white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    position: relative;
    overflow: hidden;
}

.rating-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-impact), var(--color-plus));
    opacity: 0;
    transition: opacity 0.25s ease;
    z-index: 0;
}

.rating-btn-modern .btn-icon {
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
    color: var(--color-dark);
    transition: all 0.25s ease;
}

.rating-btn-modern .btn-label {
    font-size: 0.65rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    color: var(--color-dark);
    transition: color 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.rating-btn-modern:hover {
    border-color: var(--color-plus);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 136, 145, 0.2);
}

.rating-btn-modern:hover .btn-icon {
    transform: scale(1.1);
}

.rating-btn-modern:active {
    transform: translateY(-1px);
}

.rating-btn-modern.active {
    border-color: var(--color-impact);
    box-shadow: 0 6px 16px rgba(0, 61, 122, 0.25);
}

.rating-btn-modern.active::before {
    opacity: 1;
}

.rating-btn-modern.active .btn-icon,
.rating-btn-modern.active .btn-label {
    color: var(--color-white);
}

/* Old item controls */
.item-controls {
    display: flex;
    gap: 0.5rem;
}

.rating-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.rating-btn.active[data-value="2"] {
    background: var(--color-success);
    border-color: var(--color-success);
    color: var(--color-white);
}

.rating-btn.active[data-value="1"] {
    background: var(--color-warning);
    border-color: var(--color-warning);
    color: var(--color-dark);
}

.rating-btn.active[data-value="0"] {
    background: var(--color-danger);
    border-color: var(--color-danger);
    color: var(--color-white);
}

/* Section Score Summary */
.section-score {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-impact);
    text-align: right;
    padding: 1.5rem 0;
    border-top: 2px solid var(--color-border);
    margin-top: 1rem;
}

.section-score span {
    color: var(--color-plus);
    font-size: 1.5rem;
}

/* Results Section */
.results-section {
    padding: 4rem 0;
    background: var(--color-light-gray);
}

.results-card {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.results-card h2 {
    color: var(--color-impact);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.final-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f8ff 0%, #e0f7fa 100%);
    border-radius: 12px;
}

.score-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.score-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-impact);
}

.score-denominator {
    font-size: 2.5rem;
    color: var(--color-gray);
}

.readiness-badge {
    text-align: center;
}

.readiness-badge h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.readiness-badge.champion h3 {
    color: var(--color-success);
}

.readiness-badge.ready h3 {
    color: var(--color-info);
}

.readiness-badge.explorer h3 {
    color: var(--color-warning);
}

.readiness-badge.beginner h3 {
    color: var(--color-danger);
}

.readiness-badge p {
    color: var(--color-gray);
    font-size: 1rem;
}

/* Recommendations */
.recommendations {
    background: var(--color-light-gray);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.recommendations h3 {
    color: var(--color-impact);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.recommendations li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--color-white);
    border-left: 4px solid var(--color-plus);
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1.6;
}

.recommendations li strong {
    color: var(--color-impact);
}

/* Consultation Form */
.consultation-form {
    background: var(--color-white);
}

.consultation-form h3 {
    color: var(--color-impact);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.consultation-form > p {
    color: var(--color-gray);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-plus);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #004a9f 0%, #00a0a8 100%);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 2rem auto;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 159, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.form-note {
    text-align: center;
    color: var(--color-gray);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 3rem 0 2rem;
}

/* Footer text color fixes */
.footer-section, .footer-section * {
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-section .footer-heading {
    color: #ffffff !important;
}

.footer-section .footer-list a {
    color: rgba(255, 255, 255, 0.75) !important;
}

.footer-section .footer-list a:hover {
    color: #ffffff !important;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    color: var(--color-plus);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--color-plus);
    text-decoration: none;
}

.footer-section a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 1rem;
    opacity: 0.8;
}

.version {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Success Message */
.success-message {
    background: #d4edda;
    border: 2px solid var(--color-success);
    color: #155724;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.success-message i {
    margin-right: 0.5rem;
    color: var(--color-success);
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.submit-btn.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid var(--color-white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 0.5rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .checklist-hero h1 {
        font-size: 1.75rem;
    }

    .checklist-hero .subtitle {
        font-size: 1rem;
    }

    .score-value {
        font-size: 2rem;
    }

    .score-dashboard {
        top: 0;
    }

    .score-dashboard-modern {
        top: 0;
    }

    .score-row-modern {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }

    /* Modern slider mobile optimization */
    .checklist-item-modern {
        padding: 1.25rem;
    }

    .item-question {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .rating-slider {
        height: 16px;
    }

    .rating-slider::-webkit-slider-thumb {
        width: 56px;
        height: 56px;
        border-width: 5px;
    }

    .rating-slider::-moz-range-thumb {
        width: 56px;
        height: 56px;
        border-width: 5px;
    }

    .rating-slider::-moz-range-track {
        height: 16px;
    }

    .slider-label {
        font-size: 0.75rem;
    }

    .slider-value-display {
        font-size: 0.95rem;
        padding: 0.6rem;
    }

    .rating-slider-container {
        gap: 1rem;
        padding: 0.5rem 0;
    }

    /* Modern buttons mobile */
    .item-controls-modern {
        gap: 0.5rem;
    }

    .rating-btn-modern {
        min-width: 70px;
        padding: 0.65rem 0.4rem;
    }

    .rating-btn-modern .btn-icon {
        font-size: 1.3rem;
    }

    .rating-btn-modern .btn-label {
        font-size: 0.7rem;
    }

    .progress-info {
        font-size: 0.8rem;
    }

    .score-row-modern {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Calculator mobile */
    .calculator-card {
        padding: 2rem 1.5rem;
    }

    .calculator-grid {
        gap: 2rem;
    }

    .calculate-btn {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
    }

    .section-indicator {
        font-size: 0.85rem;
    }

    .section-indicator i {
        display: none;
    }

    .score-text {
        font-size: 0.85rem;
    }

    .score-text strong {
        font-size: 1.2rem;
    }

    .level-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }

    .section-scores {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-scores-modern {
        grid-template-columns: repeat(2, 1fr);
    }

    .rating-guide {
        flex-direction: column;
        gap: 1rem;
    }

    .checklist-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .item-controls {
        align-self: flex-end;
    }

    .rating-btn {
        width: 40px;
        height: 40px;
    }

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

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

    .score-denominator {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .results-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .score-summary {
        flex-direction: column;
        align-items: flex-start;
    }

    .readiness-level {
        align-self: stretch;
        text-align: center;
    }

    .rating-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ==================== Tool Selector ==================== */
.tool-selector {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.tool-tab {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tool-tab:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.tool-tab.active {
    background: var(--color-white);
    color: var(--color-impact);
    border-color: var(--color-white);
}

/* ==================== Wizard Navigation ==================== */
.wizard-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-border);
}

.wizard-btn {
    padding: 0.875rem 2rem;
    border: 2px solid var(--color-impact);
    background: var(--color-white);
    color: var(--color-impact);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.wizard-btn:hover {
    background: var(--color-impact);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 74, 159, 0.3);
}

.wizard-btn-next,
.wizard-btn-results {
    background: linear-gradient(135deg, var(--color-impact) 0%, var(--color-plus) 100%);
    color: var(--color-white);
    border: none;
    margin-left: auto;
}

.wizard-btn-next:hover,
.wizard-btn-results:hover {
    background: linear-gradient(135deg, #003d7a 0%, #008891 100%);
}

.completion-message {
    margin-top: 1rem;
    padding: 1rem;
    background: #d4edda;
    border: 2px solid var(--color-success);
    color: #155724;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.completion-message i {
    margin-right: 0.5rem;
    color: var(--color-success);
    font-size: 1.25rem;
}

/* ==================== Tool Intro ==================== */
.tool-intro {
    padding: 2rem 0 1rem;
}

.tool-intro h2 {
    color: var(--color-impact);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.tool-intro p {
    color: var(--color-gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ==================== ROI Calculator ==================== */
.roi-calculator-section {
    padding: 3rem 0;
    background: var(--color-white);
}

.formula-display {
    background: var(--color-light-gray);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 6px solid var(--color-plus);
}

.formula-box {
    max-width: 900px;
    margin: 0 auto;
}

.formula-text {
    font-size: 1.15rem;
    line-height: 2;
    color: var(--color-dark);
    font-weight: 500;
    text-align: center;
}

.formula-component {
    color: var(--color-impact);
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 74, 159, 0.1);
    border-radius: 4px;
}

.formula-result {
    color: var(--color-plus);
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    background: rgba(0, 160, 168, 0.1);
    border-radius: 4px;
}

/* Modern & Elegant ROI Calculator Design */
.calculator-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 61, 122, 0.12);
    margin-top: 3rem;
    border: 1px solid rgba(0, 136, 145, 0.1);
    position: relative;
    overflow: hidden;
}

.calculator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--color-impact), var(--color-plus));
}

.calculator-card h3 {
    color: var(--color-impact);
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.calculator-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-impact), var(--color-plus));
    border-radius: 2px;
}

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

.calc-input-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.calc-input-group label {
    color: var(--color-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 1.05rem;
}

.calc-input-group label i {
    color: var(--color-plus);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.help-text {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-gray);
    line-height: 1.5;
}

.calc-input-group input {
    padding: 1.25rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-white);
    font-weight: 600;
    color: var(--color-dark);
}

.calc-input-group input:hover {
    border-color: var(--color-plus);
}

.calc-input-group input:focus {
    outline: none;
    border-color: var(--color-impact);
    box-shadow: 0 0 0 4px rgba(0, 136, 145, 0.1);
    transform: translateY(-2px);
}

.calc-input-group input::placeholder {
    color: #999;
    font-weight: 400;
}

/* Validation Error Message */
.validation-error {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin: 2rem auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    animation: shake 0.4s ease;
}

.validation-error i {
    color: #ef4444;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.validation-error span {
    color: #dc2626;
    font-weight: 600;
    font-size: 1rem;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.calculate-btn {
    background: linear-gradient(135deg, var(--color-impact) 0%, var(--color-plus) 100%);
    color: var(--color-white);
    padding: 1.5rem 4rem;
    border: none;
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 61, 122, 0.25);
    position: relative;
    overflow: hidden;
}

.calculate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.calculate-btn:hover::before {
    left: 100%;
}

.calculate-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 74, 159, 0.35);
}

.calculate-btn:active {
    transform: translateY(-2px) scale(0.98);
}

/* ROI Results */
.roi-results {
    margin-top: 3rem;
}

.roi-results h3 {
    color: var(--color-impact);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.result-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 61, 122, 0.15);
    border-color: var(--color-plus);
}

.result-card.highlight {
    background: linear-gradient(145deg, #e0f2fe 0%, #e0f7fa 100%);
    border: 3px solid var(--color-plus);
    box-shadow: 0 8px 24px rgba(0, 136, 145, 0.2);
}

.result-card.highlight:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 136, 145, 0.25);
}

.result-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-impact) 0%, var(--color-plus) 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 136, 145, 0.3);
    transition: transform 0.3s ease;
}

.result-card:hover .result-icon {
    transform: scale(1.1) rotate(5deg);
}

.result-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.result-label {
    font-size: 0.95rem;
    color: var(--color-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-impact);
}

.result-subtext {
    font-size: 0.95rem;
    color: var(--color-plus);
    font-weight: 600;
}

/* ROI Interpretation */
.roi-interpretation {
    margin: 2rem 0;
}

.roi-interpretation > div {
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid;
}

.interpretation-excellent {
    background: #d4edda;
    border-color: var(--color-success);
}

.interpretation-excellent h4 {
    color: #155724;
}

.interpretation-good {
    background: #d1ecf1;
    border-color: var(--color-info);
}

.interpretation-good h4 {
    color: #0c5460;
}

.interpretation-moderate {
    background: #fff3cd;
    border-color: var(--color-warning);
}

.interpretation-moderate h4 {
    color: #856404;
}

.interpretation-break-even {
    background: #e2e3e5;
    border-color: var(--color-gray);
}

.interpretation-break-even h4 {
    color: #383d41;
}

.interpretation-negative {
    background: #f8d7da;
    border-color: var(--color-danger);
}

.interpretation-negative h4 {
    color: #721c24;
}

.roi-interpretation h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.roi-interpretation p {
    color: var(--color-dark);
    line-height: 1.6;
}

.cta-section {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--color-light-gray);
    border-radius: 12px;
    text-align: center;
}

.cta-btn {
    background: linear-gradient(135deg, var(--color-impact) 0%, var(--color-plus) 100%);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 159, 0.3);
}

/* ==================== Certifications Section ==================== */
.certifications-section {
    padding: 4rem 0;
    background: var(--color-light-gray);
}

.certifications-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-impact);
    margin-bottom: 0.5rem;
}

.certifications-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

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

.certification-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cert-icon {
    font-size: 3rem;
    color: var(--color-plus);
    margin-bottom: 1.5rem;
}

.cert-title {
    color: var(--color-impact);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cert-description {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cert-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-plus);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cert-link:hover {
    color: var(--color-impact);
    gap: 0.75rem;
}

/* Certification card styles - alternate class names */
.certifications-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.certification-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.certification-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.certification-icon {
    font-size: 3rem;
    color: var(--color-plus);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.certification-icon img {
    width: 80px;
    height: auto;
    object-fit: contain;
}

.certification-title {
    color: var(--color-impact);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.certification-description {
    color: var(--color-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.certification-note {
    color: var(--color-plus);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ==================== Responsive Updates ==================== */
@media (max-width: 768px) {
    .tool-selector {
        flex-direction: column;
    }

    .tool-tab {
        width: 100%;
        justify-content: center;
    }

    .formula-text {
        font-size: 1rem;
    }

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

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

    .wizard-navigation {
        flex-direction: column;
    }

    .wizard-btn {
        width: 100%;
        justify-content: center;
    }

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

    .certifications-title {
        font-size: 1.75rem;
    }
}

/* ==================== Custom Confirmation Modal ==================== */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.custom-modal-overlay.active {
    opacity: 1;
}

.custom-modal-content {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 440px;
    width: 90%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.25s ease;
}

.custom-modal-overlay.active .custom-modal-content {
    transform: scale(1);
}

.modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.modal-icon.icon-danger {
    background: linear-gradient(135deg, #fff0f0 0%, #ffe5e5 100%);
    color: #ef4444;
}

.modal-icon.icon-info {
    background: linear-gradient(135deg, #e8f4ff 0%, #d4e9ff 100%);
    color: var(--color-impact);
}

.modal-title {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.modal-message {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.modal-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
}

.modal-btn-cancel {
    background: #f5f5f5;
    color: var(--color-gray);
}

.modal-btn-cancel:hover {
    background: #e8e8e8;
}

.modal-btn-confirm {
    background: linear-gradient(135deg, var(--color-impact) 0%, var(--color-plus) 100%);
    color: white;
}

.modal-btn-confirm:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 74, 159, 0.25);
}

.modal-btn-confirm.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.modal-btn-confirm.btn-danger:hover {
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

/* ==================== Welcome Back Popup (Redesigned) ==================== */
.welcome-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.welcome-popup-overlay.active {
    opacity: 1;
}

.welcome-popup-content {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.welcome-popup-overlay.active .welcome-popup-content {
    transform: scale(1);
}

.welcome-popup-header {
    margin-bottom: 2rem;
}

.welcome-icon-circle {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #e8f4ff 0%, #d4e9ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-impact);
}

.welcome-popup-header h3 {
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.welcome-popup-header p {
    color: var(--color-gray);
    font-size: 1rem;
}

.welcome-stats-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 74, 159, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-impact);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.welcome-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.welcome-btn {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    transition: all 0.2s ease;
}

.welcome-btn i {
    font-size: 1.1rem;
}

.welcome-btn-primary {
    background: linear-gradient(135deg, var(--color-impact) 0%, var(--color-plus) 100%);
    color: white;
}

.welcome-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 74, 159, 0.25);
}

.welcome-btn-ghost {
    background: transparent;
    color: var(--color-gray);
    border: 2px solid #e8e8e8;
}

.welcome-btn-ghost:hover {
    background: #f8f8f8;
    border-color: #d0d0d0;
}

/* ==================== Dashboard Clear Button (Redesigned) ==================== */
.dashboard-actions {
    display: flex;
    gap: 0.625rem;
    align-items: center;
}

.dashboard-btn-clear {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    font-size: 0.825rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
}

.dashboard-btn-clear:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.dashboard-btn-clear i {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Mobile responsive for section buttons */
@media (max-width: 768px) {
    .section-select-all {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }

    .select-all-buttons {
        width: 100%;
    }

    .section-fill-btn {
        flex: 1;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .section-fill-btn .btn-text {
        display: none;
    }

    .section-fill-btn .btn-icon {
        font-size: 1.3rem;
    }

    .custom-modal-content {
        padding: 2rem 1.5rem;
        max-width: 360px;
    }

    .modal-icon {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .modal-title {
        font-size: 1.3rem;
    }

    .modal-message {
        font-size: 0.95rem;
    }

    .modal-actions {
        flex-direction: column;
    }

    .modal-btn {
        width: 100%;
    }

    .welcome-popup-content {
        padding: 2.5rem 2rem;
        max-width: 360px;
    }

    .welcome-icon-circle {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }

    .welcome-popup-header h3 {
        font-size: 1.5rem;
    }

    .welcome-stats-inline {
        gap: 1.5rem;
        padding: 1.25rem;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }

    .welcome-btn {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
    }

    .dashboard-btn-clear {
        font-size: 0.75rem;
        padding: 0.45rem 0.75rem;
    }

    .dashboard-btn-clear span {
        display: none;
    }
}
