/* ===================================
   VISUAL HIERARCHY UTILITIES (PHASE 2)
   =================================== */

/* Visual Dividers to break text blocks */
.visual-divider {
    height: 1px;
    width: 60%;
    margin: 40px auto;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

/* Highlighted Terms */
.term-highlight {
    color: var(--accent-cyan);
    font-weight: 600;
    padding: 0 4px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 4px;
}

/* Infographic Containers */
.infographic-box {
    border: 1px dashed var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.03) 100%);
    margin: 30px 0;
}

/* Step Badges */
.step-badge {
    display: inline-block;
    background: var(--glass-bg);
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 4px 12px;
    border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

/* Emphasis Box */
.emphasis-box {
    background: rgba(16, 185, 129, 0.05);
    /* Green tint */
    border-left: 4px solid var(--accent-green);
    padding: 20px;
    border-radius: 0 8px 8px 0;
    margin: 20px 0;
}

.emphasis-box h4 {
    color: var(--accent-green) !important;
    margin-bottom: 5px;
}

/* Enhanced CTA */
.cta-button-large {
    font-size: 1.25rem !important;
    padding: 18px 50px !important;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.cta-button-large:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.6) !important;
}