/* Fraud Detection SOP - Modern & Fun Stylesheet */

:root {
    --primary-color: #4f46e5;
    --primary-dark: #4338ca;
    --secondary-color: #06b6d4;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-bg: #1e293b;
    --light-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.fraud-remediation-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: var(--light-bg);
    min-height: 600px;
    position: relative;
}

/* Screen Management */
.remediation-screen {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.remediation-screen.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Welcome Screen */
.welcome-content {
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
}

.welcome-header {
    margin-bottom: 40px;
}

.icon-shield {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

.icon-shield svg {
    width: 50px;
    height: 50px;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(79, 70, 229, 0);
    }
}

.welcome-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ID Form */
.id-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-align: left;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    background: white;
}

.form-hint {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-secondary);
    text-align: left;
}

/* Buttons */
.btn-primary,
.btn-success {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: white;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

/* Welcome Stats */
.welcome-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.stat-card {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Progress Bar */
.progress-container {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 24px;
}

.progress-bar {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transition: width 0.5s ease;
    width: 0%;
}

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

#progressPercent {
    color: var(--primary-color);
    font-weight: 700;
}

/* Navigation */
.remediation-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    background: var(--card-bg);
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.nav-btn:disabled {
    background: var(--border-color);
    color: var(--text-secondary);
    cursor: not-allowed;
    transform: none;
}

.nav-btn svg {
    width: 16px;
    height: 16px;
}

.page-indicator {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Content Sections */
.remediation-content {
    position: relative;
    min-height: 500px;
}

.content-section {
    display: none;
    animation: slideIn 0.4s ease-out;
}

.content-section.active {
    display: block;
}

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

.section-header {
    margin-bottom: 24px;
}

.section-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 12px;
}

.section-badge.danger {
    background: #fee2e2;
    color: var(--danger-color);
}

.section-badge.warning {
    background: #fef3c7;
    color: #d97706;
}

.section-badge.primary {
    background: #dbeafe;
    color: var(--primary-color);
}

.section-badge.success {
    background: #d1fae5;
    color: var(--success-color);
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Content Cards */
.content-card {
    background: var(--card-bg);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.content-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 24px 0 16px;
}

.content-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 16px 0 12px;
}

.content-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.content-card ul,
.content-card ol {
    margin: 12px 0 16px 24px;
    line-height: 1.8;
}

.content-card li {
    margin-bottom: 8px;
    color: var(--text-primary);
}

.lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.7;
}

/* Alert Boxes */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-left: 4px solid;
}

.alert-danger {
    background: #fee2e2;
    border-color: var(--danger-color);
    color: #991b1b;
}

.alert-warning {
    background: #fef3c7;
    border-color: var(--warning-color);
    color: #92400e;
}

.alert strong {
    font-weight: 700;
}

/* Keyword Grid */
.keyword-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
    margin: 16px 0 24px;
}

.keyword-tag {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    color: var(--primary-dark);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #bae6fd;
    transition: all 0.3s ease;
    text-align: center;
}

.keyword-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
    border-color: var(--primary-color);
}

/* Info Boxes */
.info-box {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.highlight-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-left: 4px solid var(--warning-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.quick-tips {
    background: #ecfdf5;
    border-left: 4px solid var(--success-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.highlight {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.emphasis {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
}

.step-card {
    display: flex;
    gap: 20px;
    background: var(--light-bg);
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    margin-top: 0;
    font-size: 18px;
}

.tip-box {
    background: #fef3c7;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 12px;
    font-size: 14px;
}

/* Completion Box */
/* Completion Box */
.completion-box {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 3px solid var(--success-color);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    }
    50% {
        box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
    }
}

.completion-box h3 {
    margin-top: 0;
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.completion-box p {
    font-size: 16px;
    line-height: 1.6;
    margin: 12px 0;
}

.completion-box p strong {
    color: var(--success-color);
    font-size: 18px;
}

.completion-note {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 16px;
}

.btn-large {
    padding: 18px 48px !important;
    font-size: 18px !important;
    margin: 24px 0 16px !important;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.btn-large:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4) !important;
}

/* Completion Screen */
.completion-content {
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--success-color), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPulse 1.5s ease-in-out;
}

@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.completion-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.completion-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.stat-item {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.next-steps {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin: 24px 0;
    text-align: left;
}

.next-steps h3 {
    font-size: 20px;
    margin-bottom: 16px;
    text-align: center;
}

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

.next-steps li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.next-steps li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .fraud-remediation-container {
        padding: 12px;
    }
    
    .welcome-content {
        margin: 20px auto;
    }
    
    .welcome-title {
        font-size: 28px;
    }
    
    .id-form {
        padding: 24px;
    }
    
    .welcome-stats {
        grid-template-columns: 1fr;
    }
    
    .keyword-grid {
        grid-template-columns: 1fr;
    }
    
    .remediation-navigation {
        flex-direction: column;
        gap: 12px;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .completion-stats {
        grid-template-columns: 1fr;
    }
}

/* Additional Styles for Remediation Plan */

/* Strategy Grid */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.strategy-card {
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid;
}

.strategy-card:hover {
    transform: translateY(-4px);
}

.strategy-card.detect {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-color: var(--primary-color);
}

.strategy-card.prevent {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-color: var(--success-color);
}

.strategy-card.respond {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: var(--warning-color);
}

.strategy-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.strategy-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 12px 0;
    color: var(--text-primary);
}

.strategy-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Action Items List */
.action-list {
    margin: 20px 0;
}

.action-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 12px;
    border-left: 3px solid var(--primary-color);
}

.action-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.action-content {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

/* Security Section */
.security-section {
    margin: 24px 0;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
}

.security-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Audit Grid */
.audit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.audit-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.audit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.audit-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.audit-card h4 {
    font-size: 16px;
    margin: 12px 0 8px;
}

.audit-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Frequency Grid */
.frequency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.frequency-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.frequency-card:hover {
    transform: translateY(-4px);
}

.freq-label {
    padding: 12px;
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    color: white;
}

.frequency-card.daily .freq-label {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.frequency-card.weekly .freq-label {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.freq-content {
    padding: 20px;
}

.freq-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.freq-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Escalation Level Styling */
.step-card.level-1 {
    border-left-color: var(--primary-color);
}

.step-card.level-2 {
    border-left-color: var(--warning-color);
}

.step-card.level-3 {
    border-left-color: #f97316;
}

.step-card.level-4 {
    border-left-color: var(--danger-color);
}

/* Campaign Grid */
.campaign-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.campaign-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.campaign-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.campaign-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.campaign-card h4 {
    font-size: 16px;
    margin: 12px 0 8px;
}

.campaign-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Assessment Grid */
.assessment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.assessment-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--light-bg);
    border-radius: 8px;
    align-items: start;
}

.assess-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.assessment-item p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Roadmap Table */
.roadmap-table {
    margin: 24px 0;
}

.roadmap-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 16px;
    padding: 16px;
    background: var(--dark-bg);
    color: white;
    font-weight: 700;
    border-radius: 8px 8px 0 0;
}

.roadmap-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 16px;
    padding: 16px;
    background: white;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s ease;
}

.roadmap-row:hover {
    background: var(--light-bg);
}

.roadmap-row:last-child {
    border-radius: 0 0 8px 8px;
}

.col-initiative {
    font-weight: 600;
    color: var(--text-primary);
}

.owner-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.date-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.date-badge.bau {
    background: #d1fae5;
    color: #065f46;
}

.col-date small {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.col-date small.in-progress {
    color: var(--warning-color);
    font-weight: 600;
}

/* Strategy Recap */
.strategy-recap {
    margin: 32px 0;
}

.recap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.recap-card {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.recap-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.recap-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.recap-card h4 {
    font-size: 16px;
    margin: 12px 0 8px;
}

.recap-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .strategy-grid {
        grid-template-columns: 1fr;
    }
    
    .audit-grid {
        grid-template-columns: 1fr;
    }
    
    .frequency-grid {
        grid-template-columns: 1fr;
    }
    
    .campaign-grid {
        grid-template-columns: 1fr;
    }
    
    .assessment-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-header,
    .roadmap-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .recap-grid {
        grid-template-columns: 1fr;
    }
}

/* Completion Page Styles */
.completion-page {
    text-align: center;
    padding: 20px;
}

.completion-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--success-color), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successBounce 0.6s ease-out;
}

@keyframes successBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.completion-icon svg {
    width: 50px;
    height: 50px;
    color: white;
}

.completion-page h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 24px 0 16px;
}

.completion-intro {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 16px 0 32px;
}

.completion-summary {
    background: var(--light-bg);
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
}

.completion-summary h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    text-align: left;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: white;
    border-radius: 8px;
    border: 2px solid var(--success-color);
}

.summary-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.summary-item span:last-child {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .completion-page h2 {
        font-size: 24px;
    }
}
