/* 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;
}

.quality-talk-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 */
.training-screen {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.training-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 */
.training-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 */
.training-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 {
    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) {
    .quality-talk-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;
    }
    
    .training-navigation {
        flex-direction: column;
        gap: 12px;
    }
    
    .content-card {
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .completion-stats {
        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;
    }
}

/* Quality Talk Specific Styles */

.icon-award {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-award svg {
    width: 40px;
    height: 40px;
    color: white;
}

.welcome-quote {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-left: 4px solid var(--primary-color);
    padding: 24px;
    margin: 24px 0;
    border-radius: 8px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 10px;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    opacity: 0.3;
}

.welcome-quote p {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-primary);
    margin: 0;
    padding-left: 30px;
}

/* Objectives Grid */
.objectives-grid {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.objective-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

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

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

.objective-content h3 {
    font-size: 20px;
    margin: 0 0 8px 0;
}

.objective-content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Organization Structure */
.org-structure {
    margin: 32px 0;
}

.org-level {
    margin: 24px 0;
}

.org-level h3 {
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.org-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.org-card {
    padding: 12px 24px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

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

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

.org-card.purple {
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
    border-color: #9333ea;
}

.org-level.highlight {
    margin-top: 32px;
}

.org-card.you {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 3px solid var(--warning-color);
    font-size: 18px;
    padding: 16px 32px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

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

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

.role-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.1);
}

.role-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

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

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

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

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

.impact-card:hover {
    border-color: var(--success-color);
    transform: translateY(-2px);
}

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

.impact-card h4 {
    font-size: 16px;
    margin: 0;
}

/* KAS Triangle */
.kas-triangle {
    margin: 40px 0;
}

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

.triangle-item {
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}

.triangle-item.knowledge {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border: 2px solid var(--primary-color);
}

.triangle-item.attitude {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border: 2px solid var(--success-color);
}

.triangle-item.skills {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 2px solid var(--warning-color);
}

.triangle-label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.triangle-item p {
    font-size: 14px;
    margin: 0;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.feature-card {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.feature-card h4 {
    margin: 0 0 8px 0;
}

/* Benefits List */
.benefits-list {
    margin: 24px 0;
}

.benefit-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 12px;
}

.benefit-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;
}

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

.usecase-card {
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    text-align: center;
}

.usecase-card h4 {
    font-size: 16px;
    margin: 0 0 8px 0;
    color: var(--primary-color);
}

.usecase-card p {
    font-size: 14px;
    margin: 0;
    color: var(--text-secondary);
}

/* Behaviors List */
.behaviors-list {
    margin: 24px 0;
}

.behavior-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.behavior-item:hover {
    border-color: var(--danger-color);
    transform: translateX(4px);
}

.behavior-item.phone:hover {
    border-color: var(--primary-color);
}

.behavior-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--danger-color), #dc2626);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.behavior-item.phone .behavior-number {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.behavior-content h4 {
    font-size: 18px;
    margin: 0 0 8px 0;
}

.behavior-content p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Optiflow Section */
.optiflow-intro {
    margin: 24px 0;
}

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

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

.takeaway-card:hover {
    border-color: var(--success-color);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

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

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

.takeaway-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.reminder-box {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid var(--primary-color);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    margin-top: 32px;
}

.reminder-box h3 {
    margin-top: 0;
}

@media (max-width: 768px) {
    .triangle-container {
        grid-template-columns: 1fr;
    }
    
    .objectives-grid,
    .role-grid,
    .impact-grid,
    .takeaways-grid {
        grid-template-columns: 1fr;
    }
}

/* Optiflow Section Styles */
.optiflow-interface {
    margin: 32px 0;
}

.interface-screenshot {
    margin: 20px 0;
}

.interface-screenshot img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid var(--border-color);
}

.optiflow-categories {
    margin: 32px 0;
}

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

.category-card {
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.category-card:hover {
    border-color: var(--success-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

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

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

@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
    
    .interface-screenshot img {
        border-radius: 8px;
    }
}
