/* Workflow Cards */
.workflow-card {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid var(--border-red);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.workflow-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 0 30px var(--glow-red);
}

.workflow-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

/* Feature Highlights */
.feature-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    border: 1px solid var(--border-red);
}

.feature-highlight i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Testing Option Cards */
.testing-option-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-red);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.testing-option-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

.option-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.option-header i {
    width: 1.5rem;
    height: 1.5rem;
}

/* Report Features */
.report-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    border: 1px solid var(--border-red);
}

.report-feature i {
    width: 1.25rem;
    height: 1.25rem;
}

/* Benefit Cards */
.benefit-card {
    background: rgba(17, 17, 17, 0.8);
    border: 1px solid var(--border-red);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--glow-red);
}

.benefit-card i {
    width: 2rem;
    height: 2rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: rgb(156, 163, 175);
    font-size: 0.875rem;
}
