/* Guide Styles - Individual Guide Pages */

/* Import design tokens */
@import url('../../../css/design-tokens.css');

:root {
    /* Inherit from hub styles - Unified Dashboard Theme */
    --guide-primary: var(--color-primary); /* #3B82F6 */
    --guide-primary-dark: #2563EB;      /* Darker blue for hover */
    --guide-primary-light: #60A5FA;     /* Lighter blue for accents */
    --guide-success: #10B981;           /* Emerald */
    --guide-warning: #F59E0B;           /* Amber */
    --guide-danger: #EF4444;            /* Red */
    --guide-dark: #0F172A;              /* Main background */
    --guide-gray: #64748B;              /* Medium gray */
    --guide-light: #1E293B;             /* Card background */
    --guide-white: #ffffff;
    --guide-text-primary: #ffffff;
    --guide-text-secondary: #94A3B8;    /* Secondary text */
    --guide-border: #334155;            /* Borders */
    --guide-card-bg: #1E293B;           /* Card backgrounds */
    --guide-hover-bg: #2a3f5f;          /* Hover state */
    --guide-code-bg: #0a0a0a;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'Monaco', 'Consolas', monospace;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

/* Base */
body {
    background: var(--guide-dark);
    color: var(--guide-text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

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

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

/* Guide Header */
.guide-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--guide-border);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.guide-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.difficulty-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.difficulty-badge.beginner {
    background: rgba(59, 130, 246, 0.15);
    color: var(--guide-primary);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.difficulty-badge.intermediate {
    background: rgba(245, 158, 11, 0.15);
    color: var(--guide-warning);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.difficulty-badge.advanced {
    background: rgba(239, 68, 68, 0.15);
    color: var(--guide-danger);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.read-time,
.last-updated {
    font-size: 0.875rem;
    color: var(--guide-text-secondary);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.guide-header h1 {
    font-size: 2.5rem;
    margin: 1rem 0;
    line-height: 1.2;
    color: var(--guide-text-primary);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.guide-summary {
    font-size: 1.25rem;
    color: var(--guide-text-secondary);
    margin: 0;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

/* Table of Contents */
.guide-toc {
    background: var(--guide-card-bg);
    border: 1px solid var(--guide-border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.guide-toc h3 {
    margin: 0 0 1rem 0;
    color: var(--guide-text-primary);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.guide-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.guide-toc li {
    margin-bottom: 0.5rem;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.guide-toc a {
    color: var(--guide-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.guide-toc a:hover {
    color: var(--guide-primary);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

/* Guide Content */
.guide-content {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.guide-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1rem 0;
    color: var(--guide-text-primary);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.guide-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem 0;
    color: var(--guide-text-primary);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.guide-content p {
    margin-bottom: 1.5rem;
    color: var(--guide-text-secondary);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

/* Learning Objectives */
.learning-objectives {
    background: var(--guide-card-bg);
    border: 1px solid var(--guide-border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.learning-objectives h3 {
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.learning-objectives ul {
    margin: 0;
    padding-left: 1.5rem;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.learning-objectives li {
    margin-bottom: 0.5rem;
    color: var(--guide-text-secondary);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

/* Example Comparisons */
.example-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.example {
    background: var(--guide-card-bg);
    border: 1px solid var(--guide-border);
    border-radius: 8px;
    padding: 1.5rem;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.example.bad {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.02);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.example.good {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.02);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.example h4 {
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.example.bad h4 {
    color: #ef4444;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.example.good h4 {
    color: var(--guide-success);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

/* Code Blocks */
.code-block,
.example code,
.gem-example {
    background: var(--guide-code-bg);
    border: 1px solid var(--guide-border);
    border-radius: 8px;
    padding: 1rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    overflow-x: auto;
    margin: 1rem 0;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

code {
    background: var(--guide-code-bg);
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-family: var(--font-mono);
    font-size: 0.875em;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

/* Try It Sections */
.try-it-section {
    background: var(--guide-card-bg);
    border: 1px solid var(--guide-border);
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.try-it-section h3 {
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.prompt-input {
    width: 100%;
    min-height: 100px;
    background: var(--guide-code-bg);
    border: 1px solid var(--guide-border);
    color: var(--guide-text-primary);
    padding: 1rem;
    border-radius: 8px;
    font-family: var(--font-mono);
    resize: vertical;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.btn-primary {
    background: var(--guide-primary);
    color: white;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.btn-primary:hover {
    background: var(--guide-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.btn-secondary {
    background: var(--guide-hover-bg);
    color: var(--guide-text-primary);
    border: 1px solid var(--guide-border);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.btn-secondary:hover {
    background: var(--guide-border);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

/* Key Takeaways */
.key-takeaways {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.key-takeaways h3 {
    margin: 0 0 1rem 0;
    color: var(--guide-success);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.key-takeaways ul {
    margin: 0;
    padding-left: 1.5rem;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.key-takeaways li {
    margin-bottom: 0.5rem;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

/* Next Steps */
.next-steps {
    background: var(--guide-card-bg);
    border: 1px solid var(--guide-border);
    border-radius: 8px;
    padding: 2rem;
    margin: 3rem 0;
    text-align: center;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.next-steps h3 {
    margin: 0 0 1rem 0;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.next-guide-link {
    display: block;
    padding: 1rem;
    background: var(--guide-hover-bg);
    border: 1px solid var(--guide-border);
    border-radius: 6px;
    text-decoration: none;
    color: var(--guide-text-primary);
    transition: all 0.2s;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.next-guide-link:hover {
    border-color: var(--guide-primary);
    transform: translateY(-2px);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

/* Navigation */
.guide-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin: 3rem 0;
    border-top: 1px solid var(--guide-border);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.guide-nav a {
    color: var(--guide-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

.guide-nav a:hover {
    gap: 0.75rem;
    color: var(--guide-primary-light);
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}

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

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}
    
    .guide-header h1 {
        font-size: 2rem;
    }

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}
    
    .example-comparison {
        grid-template-columns: 1fr;
    }

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}
    
    .guide-meta {
        font-size: 0.875rem;
    }

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}
    
    .next-steps-grid {
        grid-template-columns: 1fr;
    }

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}
}

/* Additional CSS for Best Practices Hub - Add to existing styles */

/* Make cards interactive */
.bp-path-card,
.bp-tips-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.bp-path-card:hover,
.bp-tips-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

/* Completion indicators */
.bp-guide-card.completed,
.bp-path-card.completed {
    position: relative;
}

.completion-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #00d084;
    font-size: 1.5rem;
}

/* Industry path specific styles */
.industry-path .learning-path-header {
    background: linear-gradient(135deg, #4a1a5a 0%, #6b243b 100%);
}

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

.industry-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: center;
}

.industry-card:hover {
    border-color: #4a9eff;
    transform: translateY(-3px);
}

.industry-card.active {
    border-color: #00d4ff;
    background: #243b6b;
}

.industry-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.industry-stats {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
}

/* Pitfall cards styling */
.pitfall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.pitfall-card {
    background: #1a2440;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.pitfall-card:hover {
    transform: translateX(5px);
}

.pitfall-card.critical {
    border-left-color: #ff4444;
}

.pitfall-card.high {
    border-left-color: #ff9800;
}

.pitfall-card.medium {
    border-left-color: #ffd700;
}

.pitfall-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.pitfall-name {
    font-size: 0.9rem;
    color: #e0e0e0;
}

/* Severity indicators */
.severity-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.severity-indicator.critical {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid #ff4444;
}

.severity-indicator.high {
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid #ff9800;
}

.severity-indicator.medium {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid #ffd700;
}

/* Advanced path specific */
.advanced-path .learning-path-header {
    background: linear-gradient(135deg, #1a5a4d 0%, #243b6b 100%);
}

.skill-card {
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.skill-level {
    width: 100%;
    height: 8px;
    background: #0f1829;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #4a9eff 0%, #00d4ff 100%);
    transition: width 0.5s ease;
}

/* Project cards */
.project-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.project-card {
    background: #1a2440;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: #4a9eff;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.project-skills {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.project-skills span {
    background: #0f1829;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4a9eff;
}

/* Content creation guide specific */
.content-hero {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2f5a 0%, #243b6b 100%);
    border-radius: 16px;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
}

.stat-label {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Voice framework */
.voice-framework {
    margin: 2rem 0;
}

.framework-steps {
    display: grid;
    gap: 1.5rem;
}

.voice-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: #1a2440;
    padding: 1.5rem;
    border-radius: 12px;
}

.step-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #4a9eff;
    color: #0a1628;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pitfall-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .voice-step {
        flex-direction: column;
        text-align: center;
    }
    
    .project-cards {
        grid-template-columns: 1fr;
    }
}