/* SWOT Analyzer Pro - Professional Glassmorphism Design */

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    
    --strength-color: #10b981;
    --weakness-color: #ef4444;
    --opportunity-color: #3b82f6;
    --threat-color: #f59e0b;
    
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --card-bg: rgba(255, 255, 255, 0.25);
    --card-border: rgba(255, 255, 255, 0.18);
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #ffffff;
    
    --shadow-light: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --shadow-heavy: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
    
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-gradient);
    min-height: 100vh;
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-light);
    padding: 30px;
}

.header-content h1 {
    color: var(--text-light);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 300;
}

.header-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--primary-color);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Section Styles */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    color: var(--text-light);
    font-size: 1.8rem;
    font-weight: 600;
}

.hidden {
    display: none !important;
}

/* Analysis Info */
.analysis-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.analysis-info span:first-child {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

.analysis-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.status-badge {
    background: var(--warning-color);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* SWOT Matrix */
.swot-matrix {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-light);
    padding: 30px;
    margin-bottom: 30px;
}

.matrix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.matrix-title h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.matrix-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.matrix-legend {
    display: flex;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

.legend-item.positive .legend-color {
    background: linear-gradient(135deg, var(--strength-color), var(--opportunity-color));
}

.legend-item.negative .legend-color {
    background: linear-gradient(135deg, var(--weakness-color), var(--threat-color));
}

/* Matrix Grid */
.matrix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    min-height: 600px;
}

.matrix-quadrant {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid transparent;
    padding: 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.matrix-quadrant:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.matrix-quadrant.strengths {
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
}

.matrix-quadrant.weaknesses {
    border-color: rgba(239, 68, 68, 0.3);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.05));
}

.matrix-quadrant.opportunities {
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
}

.matrix-quadrant.threats {
    border-color: rgba(245, 158, 11, 0.3);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
}

/* Quadrant Header */
.quadrant-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quadrant-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.strengths .quadrant-icon {
    background: var(--strength-color);
}

.weaknesses .quadrant-icon {
    background: var(--weakness-color);
}

.opportunities .quadrant-icon {
    background: var(--opportunity-color);
}

.threats .quadrant-icon {
    background: var(--threat-color);
}

.quadrant-title h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.quadrant-title p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.add-item-btn {
    margin-left: auto;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.add-item-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Quadrant Content */
.quadrant-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
}

.swot-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.strengths .swot-item {
    border-left-color: var(--strength-color);
}

.weaknesses .swot-item {
    border-left-color: var(--weakness-color);
}

.opportunities .swot-item {
    border-left-color: var(--opportunity-color);
}

.threats .swot-item {
    border-left-color: var(--threat-color);
}

.swot-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

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

.item-title {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
}

.item-actions {
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: var(--transition);
}

.swot-item:hover .item-actions {
    opacity: 1;
}

.item-action-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: var(--transition);
}

.item-action-btn:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
}

.item-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 10px;
}

.item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
}

.item-category {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 2px 8px;
    border-radius: 12px;
}

.item-ratings {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

/* Analysis Actions */
.analysis-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

/* Strategy Sections */
.strategies-section {
    margin-top: 40px;
}

.strategy-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.strategy-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-light);
    padding: 25px;
    transition: var(--transition);
}

.strategy-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.strategy-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.strategy-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.so-strategies .strategy-icon {
    background: linear-gradient(135deg, var(--strength-color), var(--opportunity-color));
}

.wo-strategies .strategy-icon {
    background: linear-gradient(135deg, var(--weakness-color), var(--opportunity-color));
}

.st-strategies .strategy-icon {
    background: linear-gradient(135deg, var(--strength-color), var(--threat-color));
}

.wt-strategies .strategy-icon {
    background: linear-gradient(135deg, var(--weakness-color), var(--threat-color));
}

.strategy-title h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.strategy-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.strategy-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.strategy-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    border-left: 4px solid var(--primary-color);
}

.strategy-item h5 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.strategy-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Strategy Summary */
.strategy-summary {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-light);
    padding: 25px;
}

.strategy-summary h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.priority-recommendations {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.priority-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.priority-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.priority-content h4 {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 5px;
}

.priority-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Insights Section */
.insights-section {
    margin-top: 40px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.insight-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-light);
    padding: 25px;
    transition: var(--transition);
}

.insight-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.insight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.insight-header h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
}

.insight-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.chart-container {
    position: relative;
    height: 200px;
}

/* Priority Matrix */
.priority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 200px;
}

.priority-quadrant {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.priority-quadrant h5 {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.priority-quadrant .count {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Balance Indicators */
.balance-indicators {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.balance-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.balance-label {
    color: var(--text-light);
    font-weight: 500;
    min-width: 120px;
}

.balance-bar {
    flex: 1;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.balance-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.8s ease;
}

.balance-fill.internal {
    background: linear-gradient(90deg, var(--strength-color), var(--weakness-color));
}

.balance-fill.external {
    background: linear-gradient(90deg, var(--opportunity-color), var(--threat-color));
}

.balance-score {
    color: var(--text-light);
    font-weight: 600;
    min-width: 50px;
    text-align: right;
}

/* Key Insights */
.insights-summary {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-light);
    padding: 25px;
}

.insights-summary h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.key-insights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.key-insight {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.insight-icon {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.insight-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    border-radius: var(--border-radius);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-heavy);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    color: var(--text-light);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.modal-body {
    padding: 25px;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.form-group label {
    display: block;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Settings Sections */
.settings-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.settings-section h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Template Options */
.template-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
}

.template-options .btn {
    padding: 10px 15px;
    font-size: 0.85rem;
    justify-content: center;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .header-actions {
        justify-content: center;
    }
    
    .matrix-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
    }
    
    .strategy-types {
        grid-template-columns: 1fr;
    }
    
    .insights-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .analysis-info {
        align-items: flex-start;
    }
    
    .matrix-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .matrix-legend {
        flex-direction: column;
        gap: 10px;
    }
    
    .quadrant-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .analysis-actions {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .template-options {
        grid-template-columns: 1fr;
    }
    
    .priority-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .balance-item {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .balance-bar {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.5rem;
    }
    
    .modal-content {
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .chart-container {
        height: 150px;
    }
    
    .matrix-grid {
        min-height: auto;
    }
    
    .quadrant-content {
        max-height: 300px;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.swot-item,
.strategy-card,
.insight-card {
    animation: slideIn 0.4s ease-out;
}

/* Loading State */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .header-actions,
    .analysis-actions,
    .btn,
    .add-item-btn,
    .item-actions {
        display: none !important;
    }
    
    .swot-matrix,
    .strategy-card,
    .insight-card {
        background: white;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .matrix-quadrant {
        border-color: #ddd;
        background: #f9f9f9;
    }
}